Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2012-11-19 08:54:55 +0000
committerEike Stepper2012-11-19 08:54:55 +0000
commitd980fbe2d36683956ebafc4d07e78cbfc9c02769 (patch)
tree6d509e147324890991b55f7e84f72a7f6562f66f
parent66317b1601c55b28e9ae930249f30d7a80ef3c9d (diff)
downloadcdo-drops/I20121119-0355.tar.gz
cdo-drops/I20121119-0355.tar.xz
cdo-drops/I20121119-0355.zip
Remove CDOIDs from label decorator patterndrops/I20121119-0355
-rw-r--r--plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOLabelDecorator.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOLabelDecorator.java b/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOLabelDecorator.java
index e874924e0c..6a24c6ff7f 100644
--- a/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOLabelDecorator.java
+++ b/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/ui/CDOLabelDecorator.java
@@ -33,7 +33,7 @@ import java.text.MessageFormat;
/**
* Decorates labels of {@link CDOObject CDO objects} according to a pattern.
- *
+ *
* @author Victor Roldan Betancort
* @since 2.0
*/
@@ -41,8 +41,7 @@ public class CDOLabelDecorator implements ILabelDecorator
{
public static final String[] DECORATION_PROPOSALS = { "${element}", "${id}", "${state}", "${created}", "${revised}" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
- public static final String DEFAULT_DECORATION = DECORATION_PROPOSALS[0]
- + " [" + DECORATION_PROPOSALS[1] + ", " + DECORATION_PROPOSALS[2] + "]"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ public static final String DEFAULT_DECORATION = DECORATION_PROPOSALS[0] + " [" + DECORATION_PROPOSALS[2] + "]"; //$NON-NLS-1$ //$NON-NLS-2$
public static final String NO_DECORATION = DECORATION_PROPOSALS[0];

Back to the top