Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / SpecimenPropertyTester.java
index 17c8213654bea177c99c3d360cea375f4d01077b..eb3995c8e6bb215aa3602a0449e2f30a852b9bec 100644 (file)
@@ -13,7 +13,7 @@ import eu.etaxonomy.taxeditor.editor.EditorUtil;
 
 /**
  * Tests types of specimens to add items to the context menu.
- * 
+ *
  * @author pplitzner
  * @author BenStoever
  */
@@ -21,13 +21,9 @@ public class SpecimenPropertyTester extends PropertyTester {
     private static final String SEQUENCE = "isSequence";
     private static final String SINGLE_READ = "isSingleRead";
 
-    
+
     public SpecimenPropertyTester() {}
 
-    
-    /* (non-Javadoc)
-     * @see org.eclipse.core.expressions.IPropertyTester#test(java.lang.Object, java.lang.String, java.lang.Object[], java.lang.Object)
-     */
     /** {@inheritDoc} */
     @Override
     public boolean test(Object receiver, String property, Object[] args, Object expectedValue) {
@@ -46,12 +42,10 @@ public class SpecimenPropertyTester extends PropertyTester {
         return false;
     }
 
-    
        private boolean isSequence(Object object) {
        return (object instanceof Sequence);
        }
 
-    
        private boolean isSingleReadAlignment(Object object) {
        return (object instanceof SingleRead);
     }