From 400cce90fa5b349c9114788bbe92a01bdad8432e Mon Sep 17 00:00:00 2001 From: mh Date: Sat, 23 Mar 2002 22:04:41 +0000 Subject: [PATCH] quiet debugging noise. minor coding style cleanup. --- source/mir/entity/Entity.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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); -- 2.11.0