From: Patrick Plitzner Date: Tue, 8 Dec 2015 17:37:03 +0000 (+0100) Subject: Remove colon from EntitySelectionElement label #5265 X-Git-Tag: 3.12.0^2~22^2~2 X-Git-Url: https://dev.e-taxonomy.eu/gitweb/taxeditor.git/commitdiff_plain/ec8e146ef1f849e2dbb9eca435a01fc4e7a1a0e3 Remove colon from EntitySelectionElement label #5265 --- diff --git a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/selection/EntitySelectionElement.java b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/selection/EntitySelectionElement.java index 3b5cf35e6..2a07ef5f8 100644 --- a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/selection/EntitySelectionElement.java +++ b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/selection/EntitySelectionElement.java @@ -136,7 +136,7 @@ public class EntitySelectionElement 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;