1
0
mirror of https://github.com/plexusorg/Plex-FAWE.git synced 2025-04-11 02:23:14 +00:00

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

@ -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);