From 6484eff8bd42dd3de2c6d19d54ea002b1e4736ac Mon Sep 17 00:00:00 2001 From: Andreas Kohlbecker Date: Mon, 3 Feb 2014 13:59:44 +0000 Subject: [PATCH] fixing #4012 (ClassCastException in User and Group Bulk Editor) by revering one line of commit r19946 - comment --- .../taxeditor/bulkeditor/input/AbstractBulkEditorInput.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java b/eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java index 8829cc7db..0e4206463 100644 --- a/eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java +++ b/eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java @@ -267,8 +267,12 @@ public abstract class AbstractBulkEditorInput implements IEd } /** + * Returns a textual representation given object. The default implementation + * in the abstract base class returns the simple name of the class, this may + * be overwritten to something more specific in subclasses. + * * @param entity - * @return + * @return a textual representation given object. */ public String getTypeText(Object entity){ return entity.getClass().getSimpleName(); -- 2.34.1