Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Cortell2009-10-06 20:43:36 +0000
committerJohn Cortell2009-10-06 20:43:36 +0000
commitcf9c80f17e8f48c805bd8f83023bc591ae2add47 (patch)
tree808cb5cabd0e57d240353445cdfe5c3f1feddb7c /dsf/org.eclipse.cdt.examples.dsf.pda.ui
parent88fd43a9ec572fc65044730288858864ef0a97e6 (diff)
downloadorg.eclipse.cdt-cf9c80f17e8f48c805bd8f83023bc591ae2add47.tar.gz
org.eclipse.cdt-cf9c80f17e8f48c805bd8f83023bc591ae2add47.tar.xz
org.eclipse.cdt-cf9c80f17e8f48c805bd8f83023bc591ae2add47.zip
[291535] inconsistency in listener registration in launch vm providers
Diffstat (limited to 'dsf/org.eclipse.cdt.examples.dsf.pda.ui')
-rw-r--r--dsf/org.eclipse.cdt.examples.dsf.pda.ui/src/org/eclipse/cdt/examples/dsf/pda/ui/viewmodel/launch/PDALaunchVMProvider.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/dsf/org.eclipse.cdt.examples.dsf.pda.ui/src/org/eclipse/cdt/examples/dsf/pda/ui/viewmodel/launch/PDALaunchVMProvider.java b/dsf/org.eclipse.cdt.examples.dsf.pda.ui/src/org/eclipse/cdt/examples/dsf/pda/ui/viewmodel/launch/PDALaunchVMProvider.java
index b00b63e8946..3bca556ccb1 100644
--- a/dsf/org.eclipse.cdt.examples.dsf.pda.ui/src/org/eclipse/cdt/examples/dsf/pda/ui/viewmodel/launch/PDALaunchVMProvider.java
+++ b/dsf/org.eclipse.cdt.examples.dsf.pda.ui/src/org/eclipse/cdt/examples/dsf/pda/ui/viewmodel/launch/PDALaunchVMProvider.java
@@ -62,10 +62,5 @@ public class PDALaunchVMProvider extends AbstractLaunchVMProvider
// Stack frames node is under the PDA threads node.
IVMNode stackFramesNode = new StackFramesVMNode(this, getSession());
addChildNodes(threadsNode, new IVMNode[] { stackFramesNode });
-
- // Register the LaunchVM provider as a listener to debug and launch
- // events. These events are used by the launch and processes nodes.
- DebugPlugin.getDefault().addDebugEventListener(this);
- DebugPlugin.getDefault().getLaunchManager().addLaunchListener(this);
}
}

Back to the top