Merge branch 'release/5.32.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / operation / CdmDefaultOperation.java
index 1d084ef1fecab70b70ba5b46cdfcea652a0bf4ae..b857b2f79853dc94436b4d0ec080e39fe554d9bd 100644 (file)
@@ -19,7 +19,6 @@ import eu.etaxonomy.cdm.model.common.CdmBase;
 /**
  * @author cmathew
  * @date 21 Jul 2015
- *
  */
 public abstract class CdmDefaultOperation extends CdmOperation {
 
@@ -28,9 +27,7 @@ public abstract class CdmDefaultOperation extends CdmOperation {
     public CdmDefaultOperation(String label, Action action, Object source, boolean async) {
         super(label, action, source, async);
     }
-    /* (non-Javadoc)
-     * @see eu.etaxonomy.taxeditor.operation.RemotingCdmOperation#doExecute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
-     */
+
     @Override
     protected boolean doExecute(IProgressMonitor monitor, IAdaptable info) {
         try {
@@ -48,14 +45,10 @@ public abstract class CdmDefaultOperation extends CdmOperation {
         if(success && cdmEntity != null) {
             fireDataChangeEvent(cdmEntity);
         }
-
     }
-    /* (non-Javadoc)
-     * @see eu.etaxonomy.taxeditor.operation.RemotingCdmOperation#onComplete(boolean)
-     */
+
     @Override
     protected IStatus onComplete(boolean success) {
         return Status.OK_STATUS;
     }
-
-}
+}
\ No newline at end of file