From 56f07e9a3aaa873fe385d224f088f048dbafa8f7 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 10 Apr 2017 16:49:54 -0400 Subject: Cleanup --- .../src/main/java/bjc/pratt/commands/PostfixCommand.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'JPratt/src/main/java/bjc/pratt/commands/PostfixCommand.java') diff --git a/JPratt/src/main/java/bjc/pratt/commands/PostfixCommand.java b/JPratt/src/main/java/bjc/pratt/commands/PostfixCommand.java index 5e2ce28..3276d09 100644 --- a/JPratt/src/main/java/bjc/pratt/commands/PostfixCommand.java +++ b/JPratt/src/main/java/bjc/pratt/commands/PostfixCommand.java @@ -8,32 +8,32 @@ import bjc.utils.parserutils.ParserException; /** * A postfix operator. - * + * * @author bjculkin * * @param * The key type of the tokens. - * + * * @param * The value type of the tokens. - * + * * @param * The state type of the parser. */ public class PostfixCommand extends BinaryPostCommand { /** * Create a new postfix operator. - * + * * @param precedence * The precedence of the operator. */ - public PostfixCommand(int precedence) { + public PostfixCommand(final int precedence) { super(precedence); } @Override - public ITree> denote(ITree> operand, Token operator, ParserContext ctx) - throws ParserException { + public ITree> denote(final ITree> operand, final Token operator, + final ParserContext ctx) throws ParserException { return new Tree<>(operator, operand); } } \ No newline at end of file -- cgit v1.2.3