Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-07-25 19:25:16 +0000
committerDarin Wright2006-07-25 19:25:16 +0000
commitc854947748506216a28b9426521be0ae65849ee6 (patch)
tree3c8596544c76d11dd3ab12c8b2613a6e8ee486c9 /org.eclipse.debug.ui/ui
parentd63c8645d3a7980c96eb60d5a26df7108c1fd182 (diff)
downloadeclipse.platform.debug-c854947748506216a28b9426521be0ae65849ee6.tar.gz
eclipse.platform.debug-c854947748506216a28b9426521be0ae65849ee6.tar.xz
eclipse.platform.debug-c854947748506216a28b9426521be0ae65849ee6.zip
spelling
Diffstat (limited to 'org.eclipse.debug.ui/ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/ThreadEventHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/ThreadEventHandler.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/ThreadEventHandler.java
index 9059e5d39..4b19e034d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/ThreadEventHandler.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/ThreadEventHandler.java
@@ -112,7 +112,7 @@ public class ThreadEventHandler extends DebugEventHandler {
protected void handleTerminate(DebugEvent event) {
IThread thread = (IThread) event.getSource();
IDebugTarget target = thread.getDebugTarget();
- // ignore thraed termination if target is terminated/disconnected
+ // ignore thread termination if target is terminated/disconnected
if (!(target.isTerminated() || target.isDisconnected())) {
fireDeltaAndClearTopFrame(thread, IModelDelta.REMOVED);
}

Back to the top