Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schwarz2013-12-13 10:24:12 +0000
committerTobias Schwarz2013-12-13 10:24:12 +0000
commit9c70311b440b7192b6af02fd9dd5fc806492b66a (patch)
tree0ba5297287c01bf74f8852f2f38565818a103998 /target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/activator
parent17e2516e95a40b95a6298c7e294b0cfc9088bbf4 (diff)
downloadorg.eclipse.tcf-9c70311b440b7192b6af02fd9dd5fc806492b66a.tar.gz
org.eclipse.tcf-9c70311b440b7192b6af02fd9dd5fc806492b66a.tar.xz
org.eclipse.tcf-9c70311b440b7192b6af02fd9dd5fc806492b66a.zip
Target Explorer: remove old peer state
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/activator')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/activator/UIPlugin.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/activator/UIPlugin.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/activator/UIPlugin.java
index 3d06081ad..2384a51e3 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/activator/UIPlugin.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/activator/UIPlugin.java
@@ -125,7 +125,7 @@ public class UIPlugin extends AbstractUIPlugin {
@Override
public void run() {
// Get all peer model objects
- IPeerNode[] peers = model.getPeers();
+ IPeerNode[] peers = model.getPeerNodes();
// Loop them and check if disconnect is available
for (IPeerNode peerNode : peers) {
IService[] services = ServiceManager.getInstance().getServices(peerNode, IStepperOperationService.class, false);

Back to the top