diff --git a/webCM/src/main/servlet/org/compiere/cm/utils/Attributes.java b/webCM/src/main/servlet/org/compiere/cm/utils/Attributes.java index caf647765f..4af7b8b963 100644 --- a/webCM/src/main/servlet/org/compiere/cm/utils/Attributes.java +++ b/webCM/src/main/servlet/org/compiere/cm/utils/Attributes.java @@ -28,7 +28,7 @@ public class Attributes implements HttpSessionAttributeListener { if (se.getName().equals("isy.user.project_id")) { String project_id = se.getValue().toString(); int projectSessionCount = 0; - // Es gibt bereits einen Eintrag in der Hashtable + // There is already an entry in the Hashtable if (projectSessions.containsKey(project_id)) { projectSessionCount= ((Integer)projectSessions.get(project_id)).intValue(); projectSessionCount++; @@ -44,7 +44,7 @@ public class Attributes implements HttpSessionAttributeListener { if (se.getName().equals("isy.user.project_id")) { String project_id = se.getValue().toString(); int projectSessionCount = 0; - // Es gibt bereits einen Eintrag in der Hashtable + // There is already an entry in the Hashtable if (projectSessions.containsKey(project_id)) { projectSessionCount= ((Integer)projectSessions.get(project_id)).intValue(); if (projectSessionCount>0) projectSessionCount--;