X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=source%2Fmircoders%2Fstorage%2FDatabaseComment.java;h=2b8108c502cb09453d3044df08012b6ab5c44f0f;hb=9065f22c307993d6dd19be86aafcef915f52f36d;hp=d819b1145a01ad8bf49ebf82a99b4e8547b41ee5;hpb=3a661e8f0f659ab5ed2ac0e4d982ac0b398d11f1;p=mir.git diff --git a/source/mircoders/storage/DatabaseComment.java b/source/mircoders/storage/DatabaseComment.java index d819b114..2b8108c5 100755 --- a/source/mircoders/storage/DatabaseComment.java +++ b/source/mircoders/storage/DatabaseComment.java @@ -34,15 +34,16 @@ public class DatabaseComment extends Database implements StorageObject{ { super(); this.hasTimestamp = false; - this.cache = new HashMap(); + ////this.cache = new HashMap(); this.theTable="comment"; try { - this.theEntityClass = Class.forName("mir.entity.EntityComment"); + this.theEntityClass = Class.forName("mircoders.entity.EntityComment"); } catch (Exception e) { throw new StorageObjectException(e.toString()); } } - public SimpleList getPopupData() { return getPopupData("title",true); } + public SimpleList getPopupData() + throws StorageObjectException { return getPopupData("title",true); } public boolean deleteByContentId(String id) throws StorageObjectException {