Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-08-04 19:15:34 +0000
committereutarass2010-08-04 19:15:34 +0000
commitf0818f70a6f6374468b8422cdade63d20f13b0fa (patch)
treefebd3753670995b9fcd96616e7c54edaece0c1dd /plugins/org.eclipse.tm.tcf
parent1d8fad11b038086a04f8b1d308833b691a06d6d1 (diff)
downloadorg.eclipse.tcf-f0818f70a6f6374468b8422cdade63d20f13b0fa.tar.gz
org.eclipse.tcf-f0818f70a6f6374468b8422cdade63d20f13b0fa.tar.xz
org.eclipse.tcf-f0818f70a6f6374468b8422cdade63d20f13b0fa.zip
Fixed misspelling in error message
Diffstat (limited to 'plugins/org.eclipse.tm.tcf')
-rw-r--r--plugins/org.eclipse.tm.tcf/src/org/eclipse/tm/tcf/EventQueue.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf/src/org/eclipse/tm/tcf/EventQueue.java b/plugins/org.eclipse.tm.tcf/src/org/eclipse/tm/tcf/EventQueue.java
index 8aecabf55..123077288 100644
--- a/plugins/org.eclipse.tm.tcf/src/org/eclipse/tm/tcf/EventQueue.java
+++ b/plugins/org.eclipse.tm.tcf/src/org/eclipse/tm/tcf/EventQueue.java
@@ -82,7 +82,7 @@ class EventQueue implements IEventQueue, Runnable {
}
private void error(Throwable x) {
- Protocol.log("Unhandled excetion in TCF event dispatch", x); //$NON-NLS-1$
+ Protocol.log("Unhandled exception in TCF event dispatch", x); //$NON-NLS-1$
}
public void run() {

Back to the top