Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/protocol/PDASuspendCommand.java')
-rw-r--r--org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/protocol/PDASuspendCommand.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/protocol/PDASuspendCommand.java b/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/protocol/PDASuspendCommand.java
index 2100c4b11..ecf864b22 100644
--- a/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/protocol/PDASuspendCommand.java
+++ b/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/pda/protocol/PDASuspendCommand.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Wind River Systems - initial API and implementation
* IBM Corporation - bug fixing
@@ -13,14 +13,14 @@ package org.eclipse.debug.examples.core.pda.protocol;
/**
- * Suspends execution of a single thread. Can be issued only if the virtual
+ * Suspends execution of a single thread. Can be issued only if the virtual
* machine is running.
- *
+ *
* <pre>
* C: suspend {thread_id}
* R: ok
* E: suspended {thread_id} client
- *
+ *
* Errors:
* error: invalid thread
error: vm already suspended
@@ -33,7 +33,7 @@ public class PDASuspendCommand extends PDACommand {
public PDASuspendCommand(int threadId) {
super("suspend " + threadId); //$NON-NLS-1$
}
-
+
@Override
public PDACommandResult createResult(String resultText) {

Back to the top