Merge pull request #592 from sharwell/rm-unnecessary-call

Remove unnecessary call to input.index()
This commit is contained in:
Sam Harwell 2014-06-01 22:29:56 -05:00
commit 6245f1383d
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ public class ParserATNSimulator extends ATNSimulator {
DFA dfa = decisionToDFA[decision];
int m = input.mark();
int index = input.index();
int index = _startIndex;
// Now we are certain to have a specific decision's DFA
// But, do we still need an initial state?