quiet debugging noise. minor coding style cleanup.
authormh <mh>
Sat, 23 Mar 2002 22:04:41 +0000 (22:04 +0000)
committermh <mh>
Sat, 23 Mar 2002 22:04:41 +0000 (22:04 +0000)
source/mir/entity/Entity.java

index 068d4e2..a678d63 100755 (executable)
@@ -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);