From 251419e1f0ab8eb04d21287b708b06a552f4c58a Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 10 Apr 2017 16:49:31 -0400 Subject: Warning resolution --- JPratt/src/main/java/bjc/pratt/PrattParser.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'JPratt/src/main/java/bjc/pratt/PrattParser.java') diff --git a/JPratt/src/main/java/bjc/pratt/PrattParser.java b/JPratt/src/main/java/bjc/pratt/PrattParser.java index e08a67c..c36cabc 100644 --- a/JPratt/src/main/java/bjc/pratt/PrattParser.java +++ b/JPratt/src/main/java/bjc/pratt/PrattParser.java @@ -174,7 +174,16 @@ public class PrattParser { } /** - * Add a dependant non-initial command to this parser. + * Add a dependent non-initial command to this parser. + * + * @param dependant + * The dependent that precedes the command. + * + * @param marker + * The token key that marks the command. + * + * @param comm + * The command. */ public void addDependantCommand(K dependant, K marker, NonInitialCommand comm) { if (dependantLeftCommands.containsKey(dependant)) { -- cgit v1.2.3