Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2012-03-05 16:48:53 +0000
committerPawel Piech2012-03-05 16:51:38 +0000
commitb2b8c46d9545665a1caf7cc0547f963cc1942ade (patch)
treea94d34312c16c099fa3ef4c4857f8d1f5b8f7130
parent5e70df0dba4d4dc4ea2ce1dea12b4b098c085312 (diff)
downloadeclipse.platform.debug-b2b8c46d9545665a1caf7cc0547f963cc1942ade.tar.gz
eclipse.platform.debug-b2b8c46d9545665a1caf7cc0547f963cc1942ade.tar.xz
eclipse.platform.debug-b2b8c46d9545665a1caf7cc0547f963cc1942ade.zip
Bug 373030 - [breakpoints] Move BreakpointTypesContribution to a public package
Cleanup printf's.
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/RulerBreakpointTypesActionDelegate.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/RulerBreakpointTypesActionDelegate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/RulerBreakpointTypesActionDelegate.java
index a6ff4db4d..aca8ab5a8 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/RulerBreakpointTypesActionDelegate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/RulerBreakpointTypesActionDelegate.java
@@ -151,7 +151,6 @@ public class RulerBreakpointTypesActionDelegate implements IEditorActionDelegate
}
public void menuAboutToShow(IMenuManager manager) {
- System.out.println("about to show");
fSelection = StructuredSelection.EMPTY;
if (fEditor != null && fRulerInfo != null) {
@@ -168,7 +167,6 @@ public class RulerBreakpointTypesActionDelegate implements IEditorActionDelegate
}
ToggleBreakpointsTargetManager toggleTargetManager = ToggleBreakpointsTargetManager.getDefault();
Set enabledIDs = toggleTargetManager.getEnabledToggleBreakpointsTargetIDs(fEditor, fSelection);
- System.out.println(enabledIDs.toString());
fCallerAction.setEnabled(enabledIDs.size() > 0);
} else {
fCallerAction.setEnabled(false);

Back to the top