diff options
Diffstat (limited to 'java/test/Freeze/complex/Complex/MultiplyNodeI.java')
-rw-r--r-- | java/test/Freeze/complex/Complex/MultiplyNodeI.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/test/Freeze/complex/Complex/MultiplyNodeI.java b/java/test/Freeze/complex/Complex/MultiplyNodeI.java index a69d45a6ae4..2f5ea93a466 100644 --- a/java/test/Freeze/complex/Complex/MultiplyNodeI.java +++ b/java/test/Freeze/complex/Complex/MultiplyNodeI.java @@ -19,13 +19,13 @@ public class MultiplyNodeI extends MultiplyNode public MultiplyNodeI(Node left, Node right) { - this.left = left; - this.right = right; + this.left = left; + this.right = right; } public int calc(Ice.Current current) { - return left.calc(current) * right.calc(current); + return left.calc(current) * right.calc(current); } } |