Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-07-16 07:27:40 +0000
committerUwe Stieber2013-07-16 07:27:40 +0000
commit25b77499b2f0e170335368d95ed28af95b53c1fe (patch)
tree7fca96f3a8f92f0e0bf17d76c25c61110eaedfac /target_explorer
parenta331652459e9f240683644484d559cf14851bd5a (diff)
downloadorg.eclipse.tcf-25b77499b2f0e170335368d95ed28af95b53c1fe.tar.gz
org.eclipse.tcf-25b77499b2f0e170335368d95ed28af95b53c1fe.tar.xz
org.eclipse.tcf-25b77499b2f0e170335368d95ed28af95b53c1fe.zip
Target Explorer: Temporary allow to force the WaitForReadyStep to be skipped
Diffstat (limited to 'target_explorer')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/steps/WaitForReadyStep.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/steps/WaitForReadyStep.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/steps/WaitForReadyStep.java
index 28125c739..21712c6a9 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/steps/WaitForReadyStep.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/steps/WaitForReadyStep.java
@@ -57,7 +57,7 @@ public class WaitForReadyStep extends AbstractPeerModelStep {
public void execute(final IStepContext context, final IPropertiesContainer data, final IFullQualifiedId fullQualifiedId, final IProgressMonitor monitor, final ICallback callback) {
// Trigger a refresh of the model to read in the newly created static peer
final ILocatorModelRefreshService service = Model.getModel().getService(ILocatorModelRefreshService.class);
- if (service != null) {
+ if (service != null && !Boolean.getBoolean("WaitForReadyStep.skip")) { //$NON-NLS-1$
Protocol.invokeLater(new Runnable() {
final Runnable thisRunnable = this;
int refreshCount = 0;

Back to the top