Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ReturnInstruction.java')
-rw-r--r--org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ReturnInstruction.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ReturnInstruction.java b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ReturnInstruction.java
index 7c865f8d1..1048d34a6 100644
--- a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ReturnInstruction.java
+++ b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ReturnInstruction.java
@@ -10,12 +10,11 @@
*******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
-
-
public class ReturnInstruction extends CompoundInstruction {
/**
* Constructor for ReturnInstruction.
+ *
* @param start
*/
public ReturnInstruction(int start) {
@@ -25,12 +24,14 @@ public class ReturnInstruction extends CompoundInstruction {
/**
* @see Instruction#execute()
*/
+ @Override
public void execute() {
stop();
}
-
+
+ @Override
public String toString() {
- return InstructionsEvaluationMessages.ReturnInstruction_return;
+ return InstructionsEvaluationMessages.ReturnInstruction_return;
}
}

Back to the top