diff options
| author | Eugene Tarassov | 2012-10-12 17:27:45 +0000 |
|---|---|---|
| committer | Eugene Tarassov | 2012-10-12 17:27:45 +0000 |
| commit | 816e05905f7513b26bc144c7e48994b939bba6fe (patch) | |
| tree | f51cd97786b1882739eadbd26384c3f34b0d8715 | |
| parent | 35439e9f09455a6d92cc8b792b9b6615971c008b (diff) | |
| download | org.eclipse.tcf-816e05905f7513b26bc144c7e48994b939bba6fe.tar.gz org.eclipse.tcf-816e05905f7513b26bc144c7e48994b939bba6fe.tar.xz org.eclipse.tcf-816e05905f7513b26bc144c7e48994b939bba6fe.zip | |
Bug 391809 - There are typos in the error messages returned when reading memory on an invalid context
| -rw-r--r-- | plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFDebugTask.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFDebugTask.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFDebugTask.java index c0f62346f..609c99c6e 100644 --- a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFDebugTask.java +++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFDebugTask.java @@ -39,7 +39,7 @@ public abstract class TCFDebugTask<V> extends TCFTask<V> { catch (InterruptedException x) { throw new DebugException(new Status( IStatus.ERROR, Activator.PLUGIN_ID, DebugException.REQUEST_FAILED, - "Debugger requiest interrupted", x)); + "Debugger request interrupted", x)); } } assert isDone(); @@ -47,7 +47,7 @@ public abstract class TCFDebugTask<V> extends TCFTask<V> { if (x instanceof DebugException) throw (DebugException)x; if (x != null) throw new DebugException(new Status( IStatus.ERROR, Activator.PLUGIN_ID, DebugException.REQUEST_FAILED, - "Debugger requiest failed", x)); + "Debugger request failed", x)); return getResult(); } |
