Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2007-07-31 19:14:00 +0000
committerMichael Rennie2007-07-31 19:14:00 +0000
commit8a0865f4ceb272cd8c5514dae6fba68e2662a501 (patch)
treecbea59461c56a9f0874ec742081e9763eaf2fae5 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugModelPropertyTester.java
parent709988f37445acdfe4c004499db055bf374cbd1e (diff)
downloadeclipse.platform.debug-8a0865f4ceb272cd8c5514dae6fba68e2662a501.tar.gz
eclipse.platform.debug-8a0865f4ceb272cd8c5514dae6fba68e2662a501.tar.xz
eclipse.platform.debug-8a0865f4ceb272cd8c5514dae6fba68e2662a501.zip
Bug 198437 EMPTY_STRING constant not used
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugModelPropertyTester.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugModelPropertyTester.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugModelPropertyTester.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugModelPropertyTester.java
index e2b4b3c20..0ef5c9350 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugModelPropertyTester.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugModelPropertyTester.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006 IBM Corporation and others.
+ * Copyright (c) 2006, 2007 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
@@ -44,7 +44,7 @@ public class DebugModelPropertyTester extends PropertyTester {
}
if(target != null) {
// check that the expected value argument is valid
- if (expectedValue == null || expectedValue.equals("")){ //$NON-NLS-1$
+ if (expectedValue == null || expectedValue.equals(IInternalDebugUIConstants.EMPTY_STRING)){
return false;
}
//!target.isTerminated() && !target.isDisconnected()

Back to the top