mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 17:57:38 +00:00
Whitespace police
This commit is contained in:
parent
5ec6276674
commit
77bd86a203
@ -167,8 +167,7 @@ public class Parser {
|
|||||||
final RValue body = parseStatements(true);
|
final RValue body = parseStatements(true);
|
||||||
|
|
||||||
statements.add(new For(current.getPosition(), init, condition, increment, body));
|
statements.add(new For(current.getPosition(), init, condition, increment, body));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
position = oldPosition;
|
position = oldPosition;
|
||||||
|
|
||||||
final Token variableToken = peek();
|
final Token variableToken = peek();
|
||||||
@ -377,7 +376,7 @@ public class Parser {
|
|||||||
|
|
||||||
return Functions.getFunction(identifierToken.getPosition(), identifierToken.value, args.toArray(new RValue[args.size()]));
|
return Functions.getFunction(identifierToken.getPosition(), identifierToken.value, args.toArray(new RValue[args.size()]));
|
||||||
} catch (NoSuchMethodException e) {
|
} catch (NoSuchMethodException e) {
|
||||||
throw new ParserException(identifierToken.getPosition(), "Function '"+identifierToken.value+"' not found", e);
|
throw new ParserException(identifierToken.getPosition(), "Function '" + identifierToken.value + "' not found", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user