Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2007-07-26 19:16:32 +0000
committerMichael Rennie2007-07-26 19:16:32 +0000
commitb38271aa968dd9cda3ff1b42114aa467ceb3e3de (patch)
tree486fbf6bcdd1596a771498de972d312cc79abf54
parent54ee204a53fe4fb2a510df0e0e599df0c21a38c4 (diff)
downloadeclipse.platform.debug-b38271aa968dd9cda3ff1b42114aa467ceb3e3de.tar.gz
eclipse.platform.debug-b38271aa968dd9cda3ff1b42114aa467ceb3e3de.tar.xz
eclipse.platform.debug-b38271aa968dd9cda3ff1b42114aa467ceb3e3de.zip
Bug 197998
Workbench refuses to show Run or Debug dialog
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/WorkingSetsFilter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/WorkingSetsFilter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/WorkingSetsFilter.java
index 54e7b2e51..05dfbe6c7 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/WorkingSetsFilter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/WorkingSetsFilter.java
@@ -59,10 +59,10 @@ public class WorkingSetsFilter extends ViewerFilter {
if(wsets.length < 1) {
return true;
}
- //remove breakpoint workingsets
+ //remove breakpoint working sets
ArrayList ws = new ArrayList();
for (int i = 0; i < wsets.length; i++) {
- if(!wsets[i].getId().equals(IInternalDebugUIConstants.ID_BREAKPOINT_WORKINGSET)) {
+ if(!IInternalDebugUIConstants.ID_BREAKPOINT_WORKINGSET.equals(wsets[i].getId())) {
ws.add(wsets[i]);
}
}

Back to the top