Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAllAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAllAction.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAllAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAllAction.java
index 7352f75dd..10bcde13a 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAllAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAllAction.java
@@ -27,16 +27,16 @@ import org.eclipse.ui.IWorkbenchWindow;
/**
* Terminates all launches.
- *
+ *
* @since 3.3
*/
public class TerminateAllAction extends DebugCommandAction implements ILaunchesListener2 {
-
+
@Override
protected ISelection getContext() {
return new StructuredSelection(getLaunchManager().getLaunches());
}
-
+
@Override
public void dispose() {
getLaunchManager().removeLaunchListener(this);
@@ -137,7 +137,7 @@ public class TerminateAllAction extends DebugCommandAction implements ILaunchesL
/**
* Initializes this action for the given workbench window.
- *
+ *
* @param window the workbench window that this action is for
*/
@Override

Back to the top