X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fstorage%2FDatabaseComment.java;h=120ff92ea7b25cf73af7e6b3d9aa322316183fb1;hb=7f8c84deada65f3aad3ef3931b3153d504969f6e;hp=d819b1145a01ad8bf49ebf82a99b4e8547b41ee5;hpb=3a661e8f0f659ab5ed2ac0e4d982ac0b398d11f1;p=mir.git diff --git a/source/mircoders/storage/DatabaseComment.java b/source/mircoders/storage/DatabaseComment.java index d819b114..120ff92e 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 {