first cut of merge of STABLE-pre1_0 into HEAD. I won't even guarantee that it
[mir.git] / source / mircoders / entity / EntityBreaking.java
index 1227601..4b430d8 100755 (executable)
@@ -18,24 +18,9 @@ import mir.entity.*;
 import mir.misc.*;
 import mir.storage.*;
 
-public class EntityBreaking extends AbstractEntity implements Entity
+public class EntityBreaking extends Entity
 {
-       private static int instances;
-
-       public EntityBreaking() {       super(); instances++;   }
+       public EntityBreaking() {       super();        }
        public EntityBreaking(StorageObject theStorage) {       this(); setStorage(theStorage); }
-       public void finalize() {
-    instances--;
-    super.finalize();
-  }
-
-
-       public HashMap getValues() {
-               HashMap returnHash = super.getValues();
-               String date=null;
 
-               if ((date=(String)returnHash.get("webdb_create"))!=null)
-                       returnHash.put("webdb_create_formatted", StringUtil.dateToReadableDate(date));
-               return returnHash;
-       }
 }