Reduced indentation on a piece of code.

This commit is contained in:
TomyLobo 2011-12-01 20:20:35 +01:00
parent af9e2da6d3
commit 771d068826

View File

@ -240,10 +240,10 @@ public class Parser {
case 0:
if (singleStatement) {
throw new ParserException(peek().getPosition(), "Statement expected.");
} else {
return new Sequence(peek().getPosition());
}
return new Sequence(peek().getPosition());
case 1:
return statements.get(0);