restructuring producer startpage
[mir.git] / source / mircoders / entity / EntityBreaking.java
index bb8016f..4b430d8 100755 (executable)
@@ -14,28 +14,13 @@ import java.io.*;
 import java.util.*;
 import java.sql.*;
 
-import webdb.entity.*;
-import webdb.misc.*;
-import webdb.storage.*;
+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;
-       }
 }