3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Reduced indentation on a piece of code.

Dieser Commit ist enthalten in:
TomyLobo 2011-12-01 20:20:35 +01:00
Ursprung af9e2da6d3
Commit 771d068826

Datei anzeigen

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