Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LazyModelPresentation.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LazyModelPresentation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LazyModelPresentation.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LazyModelPresentation.java
index e32129daf..8bf88af20 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LazyModelPresentation.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LazyModelPresentation.java
@@ -194,7 +194,7 @@ public class LazyModelPresentation implements IDebugModelPresentation, IDebugEdi
if (showVariableTypeNames()) {
try {
if (element instanceof IExpression) {
- StringBuffer buf = new StringBuffer();
+ StringBuilder buf = new StringBuilder();
IValue value = ((IExpression)element).getValue();
if (value != null) {
String type = value.getReferenceTypeName();

Back to the top