bug fixxing in bulk editor and referencing objects view
[taxeditor.git] / eu.etaxonomy.taxeditor.bulkeditor / src / main / java / eu / etaxonomy / taxeditor / bulkeditor / input / AgentEditorInput.java
index 386e714ebbd18f537a20d76a8a63e96a93cc3830..0ad0400a63e298dcd36cb7764f099343fdc71b26 100644 (file)
@@ -106,12 +106,12 @@ public class AgentEditorInput extends AbstractBulkEditorInput<AgentBase> {
                return CdmStore.getSearchManager().findTeamOrPersons(configurator);
        }
        
-       /** {@inheritDoc} */
+       /** {@inheritDoc} 
        @Override
        public AgentBase loadEntity(UUID uuid) {
                List<String> propertyPaths = Arrays.asList(new String[]{}); 
                return CdmStore.getService(IAgentService.class).load(uuid, propertyPaths);
-       }
+       }*/
 
        
        public boolean delete(AgentBase entity) throws ReferencedObjectUndeletableException  {
@@ -122,6 +122,7 @@ public class AgentEditorInput extends AbstractBulkEditorInput<AgentBase> {
 
        /** {@inheritDoc} */
        public boolean save(AgentBase entity) {
+               
                return CdmStore.getService(IAgentService.class).saveOrUpdate(entity) != null;
        }