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/LeftShiftAssignmentOperator.java')
-rw-r--r--org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/LeftShiftAssignmentOperator.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/LeftShiftAssignmentOperator.java b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/LeftShiftAssignmentOperator.java
index 27795e4b1..2ccd88d2a 100644
--- a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/LeftShiftAssignmentOperator.java
+++ b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/LeftShiftAssignmentOperator.java
@@ -12,12 +12,14 @@ package org.eclipse.jdt.internal.debug.eval.ast.instructions;
public class LeftShiftAssignmentOperator extends LeftShiftOperator {
- public LeftShiftAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
+ public LeftShiftAssignmentOperator(int variableTypeId, int valueTypeId,
+ int start) {
super(variableTypeId, variableTypeId, valueTypeId, true, start);
}
+ @Override
public String toString() {
- return InstructionsEvaluationMessages.LeftShiftAssignmentOperator_operator_1;
+ return InstructionsEvaluationMessages.LeftShiftAssignmentOperator_operator_1;
}
}

Back to the top