summaryrefslogtreecommitdiff
path: root/base/src/bjc/dicelang/EvaluatorResult.java
diff options
context:
space:
mode:
authorstudent <student@localhost>2018-02-12 12:59:01 -0500
committerstudent <student@localhost>2018-02-12 12:59:01 -0500
commit8094fc813a29d447555863b6c32816229ff01958 (patch)
tree375a00a4f72477dcf711fe2c4ab1293950614209 /base/src/bjc/dicelang/EvaluatorResult.java
parenta15873fb42e8db3b2101330514b2208ef3490d70 (diff)
Formatting pass
Diffstat (limited to 'base/src/bjc/dicelang/EvaluatorResult.java')
-rw-r--r--base/src/bjc/dicelang/EvaluatorResult.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/base/src/bjc/dicelang/EvaluatorResult.java b/base/src/bjc/dicelang/EvaluatorResult.java
index 3ceee9b..e28ebe7 100644
--- a/base/src/bjc/dicelang/EvaluatorResult.java
+++ b/base/src/bjc/dicelang/EvaluatorResult.java
@@ -56,19 +56,19 @@ public class EvaluatorResult {
/**
* The integer value of the result.
*/
- public long intVal;
+ public long intVal;
/**
* The float value of the result.
*/
- public double floatVal;
+ public double floatVal;
/**
* The dice value of the result.
*/
- public DieExpression diceVal;
+ public DieExpression diceVal;
/**
* The string value of the result.
*/
- public String stringVal;
+ public String stringVal;
/**
* Original node data
@@ -79,7 +79,7 @@ public class EvaluatorResult {
* Create a new result.
*
* @param typ
- * The type of the result.
+ * The type of the result.
*/
public EvaluatorResult(final EvaluatorResult.Type typ) {
type = typ;
@@ -89,10 +89,10 @@ public class EvaluatorResult {
* Create a new result.
*
* @param typ
- * The type of the result.
+ * The type of the result.
*
* @param orig
- * The original value of the result.
+ * The original value of the result.
*/
public EvaluatorResult(final EvaluatorResult.Type typ, final ITree<Node> orig) {
this(typ);
@@ -104,10 +104,10 @@ public class EvaluatorResult {
* Create a new result.
*
* @param typ
- * The type of the result.
+ * The type of the result.
*
* @param orig
- * The original value of the result.
+ * The original value of the result.
*/
public EvaluatorResult(final EvaluatorResult.Type typ, final Node orig) {
this(typ, new Tree<>(orig));