Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-08-14 19:51:42 +0000
committereutarass2010-08-14 19:51:42 +0000
commitd650cfb8937bde2baf99eb3459af7005ccdd4226 (patch)
tree8c37f0d71829b12fc82b26f5235c3e2a5e6e3ba1 /plugins/org.eclipse.tm.tcf.debug
parentcd2432a5179763c152c37f6d8c93552edea7446e (diff)
downloadorg.eclipse.tcf-d650cfb8937bde2baf99eb3459af7005ccdd4226.tar.gz
org.eclipse.tcf-d650cfb8937bde2baf99eb3459af7005ccdd4226.tar.xz
org.eclipse.tcf-d650cfb8937bde2baf99eb3459af7005ccdd4226.zip
Fixed: STATE_OPENNING is spelled incorrectly in the IChannel interface, should be STATE_OPENING
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/model/TCFLaunch.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java
index b2dd59118..edf969c83 100644
--- a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java
+++ b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/model/TCFLaunch.java
@@ -742,7 +742,7 @@ public class TCFLaunch extends Launch {
}
});
- assert channel.getState() == IChannel.STATE_OPENNING;
+ assert channel.getState() == IChannel.STATE_OPENING;
connecting = true;
}
catch (Throwable e) {

Back to the top