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

Back to the top