Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/commands/PDAEvalCommand.java')
-rw-r--r--dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/commands/PDAEvalCommand.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/commands/PDAEvalCommand.java b/dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/commands/PDAEvalCommand.java
index 2aa8117b8c9..49a565e7105 100644
--- a/dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/commands/PDAEvalCommand.java
+++ b/dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/commands/PDAEvalCommand.java
@@ -7,7 +7,7 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
- *
+ *
* Contributors:
* Wind River Systems - initial API and implementation
*******************************************************************************/
@@ -18,31 +18,31 @@ import org.eclipse.cdt.examples.dsf.pda.service.PDAThreadDMContext;
/**
* Sets what events cause the execution to stop.
- *
+ *
* <pre>
* C: eval {thread_id} {instruction}%20{parameter}|{instruction}%20{parameter}|...
* R: ok
* E: resumed {thread_id} client
* E: evalresult result
* E: suspended {thread_id} eval
- *
+ *
* Errors:
* error: invalid thread
* error: cannot evaluate while vm is suspended
- * error: thread running
+ * error: thread running
* </pre>
- *
- * Where event_name could be <code>unimpinstr</code> or <code>nosuchlabel</code>.
+ *
+ * Where event_name could be <code>unimpinstr</code> or <code>nosuchlabel</code>.
*/
@Immutable
public class PDAEvalCommand extends AbstractPDACommand<PDACommandResult> {
- public PDAEvalCommand(PDAThreadDMContext thread, String operation) {
- super(thread, "eval " + thread.getID() + " " + operation);
- }
-
- @Override
- public PDACommandResult createResult(String resultText) {
- return new PDACommandResult(resultText);
- }
+ public PDAEvalCommand(PDAThreadDMContext thread, String operation) {
+ super(thread, "eval " + thread.getID() + " " + operation);
+ }
+
+ @Override
+ public PDACommandResult createResult(String resultText) {
+ return new PDACommandResult(resultText);
+ }
}

Back to the top