Fixes a problem where multiple polytomous key editors could not be opened
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / key / AbstractIdentificationEditorInput.java
index ff1e6960f692be32886c2bcb8fa43726e810c62b..4bf11c90dff393d6db4ec30929588e7f2533bfbf 100644 (file)
@@ -98,5 +98,15 @@ public abstract class AbstractIdentificationEditorInput<T extends IIdentificatio
        @Override
        public void update(CdmDataChangeMap changeEvents) {
        }
+       
+       /* (non-Javadoc)
+        * @see java.lang.Object#equals(java.lang.Object)
+        */
+       @Override
+       public boolean equals(Object obj) {
+               // TODO Auto-generated method stub
+               boolean result = super.equals(obj);
+               return result;
+       }
 
 }