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/UnsignedRightShiftAssignmentOperator.java')
-rw-r--r--org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/UnsignedRightShiftAssignmentOperator.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/UnsignedRightShiftAssignmentOperator.java b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/UnsignedRightShiftAssignmentOperator.java
index 0f01ff16b..76aceb197 100644
--- a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/UnsignedRightShiftAssignmentOperator.java
+++ b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/UnsignedRightShiftAssignmentOperator.java
@@ -10,14 +10,17 @@
*******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
-public class UnsignedRightShiftAssignmentOperator extends UnsignedRightShiftOperator {
+public class UnsignedRightShiftAssignmentOperator extends
+ UnsignedRightShiftOperator {
- public UnsignedRightShiftAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
+ public UnsignedRightShiftAssignmentOperator(int variableTypeId,
+ int valueTypeId, int start) {
super(variableTypeId, variableTypeId, valueTypeId, true, start);
}
+ @Override
public String toString() {
- return InstructionsEvaluationMessages.UnsignedRightShiftAssignmentOperator_operator_1;
+ return InstructionsEvaluationMessages.UnsignedRightShiftAssignmentOperator_operator_1;
}
}

Back to the top