From: mh Date: Sat, 23 Mar 2002 22:04:41 +0000 (+0000) Subject: quiet debugging noise. minor coding style cleanup. X-Git-Tag: prexmlproducerconfig~258 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=400cce90fa5b349c9114788bbe92a01bdad8432e;p=mir.git quiet debugging noise. minor coding style cleanup. --- diff --git a/source/mir/entity/Entity.java b/source/mir/entity/Entity.java index 068d4e2e..a678d63c 100755 --- a/source/mir/entity/Entity.java +++ b/source/mir/entity/Entity.java @@ -42,7 +42,7 @@ public class Entity implements TemplateHashModel, TemplateModelRoot this.changed = false; instances++; Integer i = new Integer(instances); - System.err.println("New abstract entity instance: "+i.toString()); + //System.err.println("New abstract entity instance: "+i.toString()); } /** @@ -163,12 +163,14 @@ public class Entity implements TemplateHashModel, TemplateModelRoot } /** - * Sets the value for a field. Issues a log message if the field name supplied was not found in the Entity. + * Sets the value for a field. Issues a log message if the field name + * supplied was not found in the Entity. * @param theProp The field name whose value has to be set * @param theValue The new value of the field * @exception StorageObjectException */ - public void setValueForProperty (String theProp, String theValue) throws StorageObjectException { + public void setValueForProperty (String theProp, String theValue) + throws StorageObjectException { this.changed = true; if (isField(theProp)) theValuesHash.put(theProp, theValue);