Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2002-04-04 16:54:44 +0000
committerDarin Swanson2002-04-04 16:54:44 +0000
commit2552ed19a3536ab1a75dc2109b9036a2df9f76de (patch)
tree6c35989d46ae1c27e889104ae821c3f317f4d91f
parentaed34ff15a25aa9ba4f6a8994cb807b4590a856a (diff)
downloadeclipse.platform.debug-2552ed19a3536ab1a75dc2109b9036a2df9f76de.tar.gz
eclipse.platform.debug-2552ed19a3536ab1a75dc2109b9036a2df9f76de.tar.xz
eclipse.platform.debug-2552ed19a3536ab1a75dc2109b9036a2df9f76de.zip
Moved from new Boolean(*) to Boolean.*
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DelegatingModelPresentation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DelegatingModelPresentation.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DelegatingModelPresentation.java
index 3616f4078..6dd647c2f 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DelegatingModelPresentation.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DelegatingModelPresentation.java
@@ -275,7 +275,7 @@ public class DelegatingModelPresentation implements IDebugModelPresentation {
*/
protected boolean showVariableTypeNames() {
Boolean show= (Boolean) fAttributes.get(DISPLAY_VARIABLE_TYPE_NAMES);
- show= show == null ? new Boolean(false) : show;
+ show= show == null ? Boolean.FALSE : show;
return show.booleanValue();
}

Back to the top