From bfa7c67f491d8f693308e6299266f527b49be600 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Wed, 27 Jul 2016 16:31:36 -0400 Subject: Formatting pass --- .../src/main/java/bjc/dicelang/ast/ArithmeticCollapser.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'dice-lang/src/main/java/bjc/dicelang/ast/ArithmeticCollapser.java') diff --git a/dice-lang/src/main/java/bjc/dicelang/ast/ArithmeticCollapser.java b/dice-lang/src/main/java/bjc/dicelang/ast/ArithmeticCollapser.java index ac53c81..3820d68 100644 --- a/dice-lang/src/main/java/bjc/dicelang/ast/ArithmeticCollapser.java +++ b/dice-lang/src/main/java/bjc/dicelang/ast/ArithmeticCollapser.java @@ -49,8 +49,8 @@ final class ArithmeticCollapser implements IOperatorCollapser { return reducedState; } - private IList combineArrayResults( - IResult accumulatedValue, IResult currentValue) { + private IList combineArrayResults(IResult accumulatedValue, + IResult currentValue) { IList currentList = ((ArrayResult) currentValue) .getValue(); IList accumulatedList = ((ArrayResult) accumulatedValue) @@ -126,9 +126,8 @@ final class ArithmeticCollapser implements IOperatorCollapser { accumulatedTree); } - private IList halfCombineLists( - IList list, IResult scalar, - boolean scalarLeft) { + private IList halfCombineLists(IList list, + IResult scalar, boolean scalarLeft) { if (scalar.getType() != ResultType.INTEGER) { throw new UnsupportedOperationException( "Nested array operations not supported"); -- cgit v1.2.3