X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fmodule%2FModuleComment.java;fp=source%2Fmircoders%2Fmodule%2FModuleComment.java;h=4cceb56bdc9b6aa0ed1dd42776860d09d4629099;hb=c9ac8fa71b679f8d967aac901bbef945c13b94c9;hp=a66d4ccc112141c3471a216d1adcc621bc62f0db;hpb=d63595f89aaa4b6a524dc0b4af9e0eef888f4c6b;p=mir.git diff --git a/source/mircoders/module/ModuleComment.java b/source/mircoders/module/ModuleComment.java index a66d4ccc..4cceb56b 100755 --- a/source/mircoders/module/ModuleComment.java +++ b/source/mircoders/module/ModuleComment.java @@ -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"));