Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2010-01-05 19:00:01 +0000
committerDarin Wright2010-01-05 19:00:01 +0000
commitb9ab1e9d8a1fffb548381d1c5f2babc748979e42 (patch)
treeb0592d22078cc5edbcfc2172ec41957242dba29f /org.eclipse.debug.ui
parentbf4f7b6cc842c737596704ba8a76561f503fd670 (diff)
downloadeclipse.platform.debug-b9ab1e9d8a1fffb548381d1c5f2babc748979e42.tar.gz
eclipse.platform.debug-b9ab1e9d8a1fffb548381d1c5f2babc748979e42.tar.xz
eclipse.platform.debug-b9ab1e9d8a1fffb548381d1c5f2babc748979e42.zip
remove unused methods, fix compiler warning
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAllAction.java10
1 files changed, 1 insertions, 9 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 b6f8e6e22..5634bcd49 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2009 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 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
@@ -35,14 +35,6 @@ public class TerminateAllAction extends DebugCommandAction implements ILaunchesL
return new StructuredSelection(getLaunchManager().getLaunches());
}
- public void contextActivated(ISelection context, IWorkbenchPart part) {
- // DO NOTHING
- }
-
- public void contextChanged(ISelection context, IWorkbenchPart part) {
- // DO NOTHING
- }
-
public void dispose() {
getLaunchManager().removeLaunchListener(this);
super.dispose();

Back to the top