Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Torregrosa Paez2015-09-30 08:42:13 +0000
committerPablo Torregrosa Paez2015-09-30 08:42:41 +0000
commitb2389ff65cb9dfa82d67756cfddfdbefa4d62813 (patch)
tree02403fabdd7efc190e753cde1ac5a4591806f82f
parentfb8b3e77f2aa51ad84ad5f48b4af6b699e725f9d (diff)
downloadorg.eclipse.tcf-b2389ff65cb9dfa82d67756cfddfdbefa4d62813.tar.gz
org.eclipse.tcf-b2389ff65cb9dfa82d67756cfddfdbefa4d62813.tar.xz
org.eclipse.tcf-b2389ff65cb9dfa82d67756cfddfdbefa4d62813.zip
Target Explorer: Fix processes autoRefresh function
Change-Id: I738a71025dcda71d6c62d9ff6dc8bd35b89e02f3 Signed-off-by: Pablo Torregrosa Paez <pablo.torregrosa@windriver.com>
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/model/runtime/RuntimeModel.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/model/runtime/RuntimeModel.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/model/runtime/RuntimeModel.java
index e875d3d9a..0578ae5d4 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/model/runtime/RuntimeModel.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/model/runtime/RuntimeModel.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2012, 2014 Wind River Systems, Inc. and others. All rights reserved.
+ * Copyright (c) 2012, 2015 Wind River Systems, Inc. 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 http://www.eclipse.org/legal/epl-v10.html
@@ -258,7 +258,7 @@ public final class RuntimeModel extends ContainerModelNode implements IRuntimeMo
@Override
public void run() {
// Refresh the model
- RuntimeModel.this.getService(IRuntimeModelRefreshService.class).autoRefresh(new Callback() {
+ RuntimeModel.this.getService(IRuntimeModelRefreshService.class).refresh(new Callback() {
@Override
protected void internalDone(Object caller, IStatus status) {
// Re-schedule ourself if the interval is still > 0

Back to the top