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/ParserContext.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'JPratt/src/main/java/bjc/pratt/ParserContext.java') diff --git a/JPratt/src/main/java/bjc/pratt/ParserContext.java b/JPratt/src/main/java/bjc/pratt/ParserContext.java index f5e22ba..1697a12 100644 --- a/JPratt/src/main/java/bjc/pratt/ParserContext.java +++ b/JPratt/src/main/java/bjc/pratt/ParserContext.java @@ -30,18 +30,18 @@ public class ParserContext { /** * Create a new parser context. * - * @param tokens + * @param tokns * The source of tokens. * - * @param parse + * @param prse * The parser to call for sub expressions. * - * @param state + * @param stte * Any state needing to be kept during parsing. */ - public ParserContext(TokenStream tokens, PrattParser parse, C state) { - this.tokens = tokens; - this.parse = parse; - this.state = state; + public ParserContext(TokenStream tokns, PrattParser prse, C stte) { + this.tokens = tokns; + this.parse = prse; + this.state = stte; } } \ No newline at end of file -- cgit v1.2.3