merged 1.1 branch into head
[mir.git] / source / mircoders / module / ModuleComment.java
index a66d4cc..4cceb56 100755 (executable)
@@ -29,6 +29,8 @@
  */
 package mircoders.module;
 
+import java.util.Map;
+
 import mir.entity.Entity;
 import mir.log.LoggerWrapper;
 import mir.module.AbstractModule;
@@ -37,8 +39,6 @@ import mir.module.ModuleFailure;
 import mircoders.storage.DatabaseComment;
 import mircoders.storage.DatabaseContent;
 
-import java.util.Map;
-
 
 /*
  *  ModuleComment - methods and access for comments
@@ -57,7 +57,7 @@ public class ModuleComment extends AbstractModule
 
   public void deleteById (String anId) throws ModuleExc, ModuleFailure {
     try {
-      Entity theEntity = storage.selectById((String)anId);
+      Entity theEntity = database.selectById(anId);
       if (theEntity != null)
         DatabaseContent.getInstance().setUnproduced("id=" + theEntity.getFieldValue("to_media"));
 
@@ -68,17 +68,9 @@ public class ModuleComment extends AbstractModule
     }
   }
 
-  /**
-   *
-   * @param theValues
-   * @return
-   * @throws ModuleExc
-   * @throws ModuleFailure
-   */
-
   public String set(Map theValues) throws ModuleExc, ModuleFailure {
     try {
-      Entity theEntity = storage.selectById((String)theValues.get("id"));
+      Entity theEntity = database.selectById((String)theValues.get("id"));
       if (theEntity == null)
          throw new ModuleExc("No Object in the database with id " + theValues.get("id"));
       DatabaseContent.getInstance().setUnproduced("id=" + theEntity.getFieldValue("to_media"));