media-upload
[mir.git] / source / mircoders / storage / DatabaseBreaking.java
index 888bc4e..cb789d8 100755 (executable)
@@ -32,15 +32,12 @@ public class DatabaseBreaking extends Database implements StorageObject{
        private DatabaseBreaking() throws StorageObjectException
        {
                super();
-    theLog.printDebugInfo("-- outside database");
                this.cache = new HashMap();
                this.theTable="breaking";
                try {
-                       this.theEntityClass = Class.forName("mir.entity.EntityBreaking");
+                       this.theEntityClass = Class.forName("mircoders.entity.EntityBreaking");
                }
                catch (Exception e) { throw new StorageObjectException(e.toString());   }
-
-    theLog.printDebugInfo("-- leaving dbb");
        }