summaryrefslogtreecommitdiff
path: root/dice-lang/src/bjc/dicelang/v1/OperatorDiceExpression.java
diff options
context:
space:
mode:
authorEVE <EVE@EVE-PC>2017-03-14 12:08:11 -0400
committerEVE <EVE@EVE-PC>2017-03-14 12:08:11 -0400
commit635d3150e3e85c01b777ff165e21fa8965d58440 (patch)
tree3389128f83a5a79f8d0eec0a0e19f54b9d117b66 /dice-lang/src/bjc/dicelang/v1/OperatorDiceExpression.java
parente59e2a97773f93bdd25bd4680809c10699f0feb3 (diff)
Cleanup
Diffstat (limited to 'dice-lang/src/bjc/dicelang/v1/OperatorDiceExpression.java')
-rw-r--r--dice-lang/src/bjc/dicelang/v1/OperatorDiceExpression.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/dice-lang/src/bjc/dicelang/v1/OperatorDiceExpression.java b/dice-lang/src/bjc/dicelang/v1/OperatorDiceExpression.java
index bf9254e..a5d37e2 100644
--- a/dice-lang/src/bjc/dicelang/v1/OperatorDiceExpression.java
+++ b/dice-lang/src/bjc/dicelang/v1/OperatorDiceExpression.java
@@ -2,7 +2,7 @@ package bjc.dicelang.v1;
/**
* Implements a class for combining two dice with an operator
- *
+ *
* @author ben
*
*/
@@ -24,7 +24,7 @@ public class OperatorDiceExpression implements IDiceExpression {
/**
* Create a new compound expression using the specified parameters
- *
+ *
* @param rght
* The die on the right side of the expression
* @param lft
@@ -43,7 +43,7 @@ public class OperatorDiceExpression implements IDiceExpression {
/*
* Handle each operator
*/
- switch (type) {
+ switch(type) {
case ADD:
return right.roll() + left.roll();
case SUBTRACT:
@@ -58,7 +58,7 @@ public class OperatorDiceExpression implements IDiceExpression {
*/
try {
return right.roll() / left.roll();
- } catch (ArithmeticException aex) {
+ } catch(ArithmeticException aex) {
UnsupportedOperationException usex = new UnsupportedOperationException(
"Attempted to divide by zero." + " Problematic expression is " + left);