fixed a type cast bug in the test data parser

This commit is contained in:
hneemann 2019-07-13 09:18:44 +02:00
parent 8e5df41c06
commit 058824530c

View File

@ -169,7 +169,7 @@ public class Parser {
break;
case OPEN:
exp = parseExpression();
line.add((vals, context) -> vals.add(new Value((int) exp.value(context))));
line.add((vals, context) -> vals.add(new Value(exp.value(context))));
expect(Tokenizer.Token.CLOSE);
break;
case EOF: