Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-06-14 22:17:58 +0000
committereutarass2010-06-14 22:17:58 +0000
commit45db01fd77787ce4f96031105447db160da6b742 (patch)
treeb37319b73cff0e6ca16f5415805de9cbf1471a67 /plugins/org.eclipse.tm.tcf.debug
parentec219d64c39997e9b4c1ec2e4f24adb8cf8b7927 (diff)
downloadorg.eclipse.tcf-45db01fd77787ce4f96031105447db160da6b742.tar.gz
org.eclipse.tcf-45db01fd77787ce4f96031105447db160da6b742.tar.xz
org.eclipse.tcf-45db01fd77787ce4f96031105447db160da6b742.zip
TCF Debugger: "Run Tests" and "Tests Loop" commands now start the agent if "Run instance of TCF agent..." is checked
Diffstat (limited to 'plugins/org.eclipse.tm.tcf.debug')
-rw-r--r--plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLocalAgent.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLocalAgent.java b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLocalAgent.java
index af4494f66..1f8b27517 100644
--- a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLocalAgent.java
+++ b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLocalAgent.java
@@ -58,7 +58,7 @@ public class TCFLocalAgent {
return "agent/" + os + "/" + arch + "/" + fnm;
}
- static synchronized String runLocalAgent() throws CoreException {
+ public static synchronized String runLocalAgent() throws CoreException {
if (destroed) return null;
String id = getLocalAgentID();
if (id != null) return id;

Back to the top