Entity now freemarker compliant, freemarker lib update, deprecation of HTMLTemplatePr...
[mir.git] / source / mircoders / entity / EntityBreaking.java
index 1227601..86882a8 100755 (executable)
@@ -14,11 +14,13 @@ import java.io.*;
 import java.util.*;
 import java.sql.*;
 
+import freemarker.template.*;
+
 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;
 
@@ -29,13 +31,9 @@ public class EntityBreaking extends AbstractEntity implements Entity
     super.finalize();
   }
 
+  /* @deprecated */
+  public HashMap getValues() {
+    return super.getValues();
+  }
 
-       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;
-       }
 }