Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2013-04-05 18:06:09 +0000
committerMarkus Keller2013-04-05 18:06:09 +0000
commit4fe3abfa7bf8bd25e5b545c33710b4c55bcdbc5d (patch)
treea952216238811964fdb456ad3711ddf54f580d65
parentf89ec7d1780be0be876a4a44a3407added45cdb3 (diff)
downloadeclipse.jdt.ui-4fe3abfa7bf8bd25e5b545c33710b4c55bcdbc5d.tar.gz
eclipse.jdt.ui-4fe3abfa7bf8bd25e5b545c33710b4c55bcdbc5d.tar.xz
eclipse.jdt.ui-4fe3abfa7bf8bd25e5b545c33710b4c55bcdbc5d.zip
render source range as [start+length]
-rw-r--r--org.eclipse.jdt.astview/src/org/eclipse/jdt/astview/views/ASTViewLabelProvider.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.astview/src/org/eclipse/jdt/astview/views/ASTViewLabelProvider.java b/org.eclipse.jdt.astview/src/org/eclipse/jdt/astview/views/ASTViewLabelProvider.java
index 34f70081b8..88aee201e6 100644
--- a/org.eclipse.jdt.astview/src/org/eclipse/jdt/astview/views/ASTViewLabelProvider.java
+++ b/org.eclipse.jdt.astview/src/org/eclipse/jdt/astview/views/ASTViewLabelProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -84,7 +84,7 @@ public class ASTViewLabelProvider extends LabelProvider implements IColorProvide
buf.append(Signature.getSimpleName(node.getClass().getName()));
buf.append(" ["); //$NON-NLS-1$
buf.append(node.getStartPosition());
- buf.append(", "); //$NON-NLS-1$
+ buf.append("+"); //$NON-NLS-1$
buf.append(node.getLength());
buf.append(']');
if ((node.getFlags() & ASTNode.MALFORMED) != 0) {

Back to the top