Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2014-03-06 08:35:22 +0000
committerAnton Leherbauer2014-03-06 08:35:22 +0000
commitac4acb796c3fbfe212246bdeb1617cd781a63282 (patch)
tree5cd75959d59c3d5fbe3cd541a768dcf745fb223b
parent1316b3562d6e7d05e786942ac3b8894d133b3a16 (diff)
downloadorg.eclipse.tcf-ac4acb796c3fbfe212246bdeb1617cd781a63282.tar.gz
org.eclipse.tcf-ac4acb796c3fbfe212246bdeb1617cd781a63282.tar.xz
org.eclipse.tcf-ac4acb796c3fbfe212246bdeb1617cd781a63282.zip
TCF Debugger: Fix copy-paste error in error message of TerminateCommand
Cannot resume -> Cannot terminate
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/TerminateCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/TerminateCommand.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/TerminateCommand.java
index a72812b7a..9213a525d 100644
--- a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/TerminateCommand.java
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/TerminateCommand.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others.
+ * Copyright (c) 2007, 2014 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -124,7 +124,7 @@ public class TerminateCommand implements ITerminateHandler {
cmds.remove(token);
if (error != null) {
monitor.setStatus(new Status(IStatus.ERROR,
- Activator.PLUGIN_ID, IStatus.OK, "Cannot resume: " + error.getLocalizedMessage(), error));
+ Activator.PLUGIN_ID, IStatus.OK, "Cannot terminate: " + error.getLocalizedMessage(), error));
}
if (cmds.isEmpty()) done();
}

Back to the top