X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=source%2Fmircoders%2Fstorage%2FDatabaseComment.java;h=25ada19ef76365a32a3127c8a3dada2e7691031f;hb=8bcb7e6ff26839de2f11aab160181b561cf276c1;hp=7787a58e6a534eedeccacfe60ea30c5cda5e0174;hpb=635db236fe78484b5f7f0158ad8054b189bf7a79;p=mir.git diff --git a/source/mircoders/storage/DatabaseComment.java b/source/mircoders/storage/DatabaseComment.java index 7787a58e..25ada19e 100755 --- a/source/mircoders/storage/DatabaseComment.java +++ b/source/mircoders/storage/DatabaseComment.java @@ -7,9 +7,9 @@ import java.util.*; import freemarker.template.*; -import webdb.storage.*; -import webdb.entity.*; -import webdb.misc.*; +import mir.storage.*; +import mir.entity.*; +import mir.misc.*; /** * This class implements the access to the comment-table for the @@ -37,7 +37,7 @@ public class DatabaseComment extends Database implements StorageObject{ 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()); } }