Remove colon from EntitySelectionElement label #5265
authorPatrick Plitzner <p.plitzner@bgbm.org>
Tue, 8 Dec 2015 17:37:03 +0000 (18:37 +0100)
committerPatrick Plitzner <p.plitzner@bgbm.org>
Tue, 8 Dec 2015 17:37:03 +0000 (18:37 +0100)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/selection/EntitySelectionElement.java

index 3b5cf35e60576e64081a70fd955f78dd78c7c109..2a07ef5f8c91e187718e66a4e374071c7dbfee8f 100644 (file)
@@ -136,7 +136,7 @@ public class EntitySelectionElement<T extends CdmBase> extends
                this.isDeletable = (mode & DELETABLE) == DELETABLE;
                boolean isSelectable = (mode & SELECTABLE) == SELECTABLE;
 
-               this.labelString = (labelString == null || labelString.equals("")) ? "" : labelString + " : ";
+               this.labelString = (labelString == null || labelString.equals("")) ? "" : labelString;
 
                this.conversation = conversation;