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/PushInt.java')
-rw-r--r--org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/PushInt.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/PushInt.java b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/PushInt.java
index 8bda715e7..2e9a2e155 100644
--- a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/PushInt.java
+++ b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/PushInt.java
@@ -10,25 +10,25 @@
*******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
-
/**
* Pushes an int literal onto the stack.
*/
public class PushInt extends SimpleInstruction {
-
+
private int fValue;
-
+
public PushInt(int value) {
fValue = value;
}
-
+
+ @Override
public void execute() {
pushNewValue(fValue);
}
-
+
+ @Override
public String toString() {
- return InstructionsEvaluationMessages.PushInt_push__1 + fValue;
+ return InstructionsEvaluationMessages.PushInt_push__1 + fValue;
}
}
-

Back to the top