X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=source%2Fmircoders%2Fstorage%2FDatabaseBreaking.java;h=cb789d8411b98bc6a6057fb11964ef0416d636f9;hb=3e261ca36440b99381ade1aa5d64fa744ae367a7;hp=888bc4ebe7ddf6c7c2e1dfcbe79ae996e246b926;hpb=0df29361e484a602c907336ae33a3aded35f41db;p=mir.git diff --git a/source/mircoders/storage/DatabaseBreaking.java b/source/mircoders/storage/DatabaseBreaking.java index 888bc4eb..cb789d84 100755 --- a/source/mircoders/storage/DatabaseBreaking.java +++ b/source/mircoders/storage/DatabaseBreaking.java @@ -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"); }