From 56f07e9a3aaa873fe385d224f088f048dbafa8f7 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 10 Apr 2017 16:49:54 -0400 Subject: Cleanup --- .../main/java/bjc/pratt/commands/DefaultNonInitialCommand.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'JPratt/src/main/java/bjc/pratt/commands/DefaultNonInitialCommand.java') diff --git a/JPratt/src/main/java/bjc/pratt/commands/DefaultNonInitialCommand.java b/JPratt/src/main/java/bjc/pratt/commands/DefaultNonInitialCommand.java index aeb337d..6f590c9 100644 --- a/JPratt/src/main/java/bjc/pratt/commands/DefaultNonInitialCommand.java +++ b/JPratt/src/main/java/bjc/pratt/commands/DefaultNonInitialCommand.java @@ -7,21 +7,22 @@ import bjc.utils.data.ITree; /** * Default implementation of a non-initial command. - * + * * @author EVE * * @param * The key type of the tokens. - * + * * @param * The value type of the tokens. - * + * * @param * The state type of the parser. */ public class DefaultNonInitialCommand extends NonInitialCommand { @Override - public ITree> denote(ITree> operand, Token operator, ParserContext ctx) { + public ITree> denote(final ITree> operand, final Token operator, + final ParserContext ctx) { throw new UnsupportedOperationException("Default command has no left denotation"); } -- cgit v1.2.3