update comment after limiting number of debug tokens

This commit is contained in:
Michael Sokolov 2018-11-24 10:48:26 -05:00 committed by Mike McCandless
parent 34ed01543a
commit 6728f0c4f4
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public final class ValidatingTokenFilter extends TokenFilter {
private final OffsetAttribute offsetAtt = getAttribute(OffsetAttribute.class);
private final CharTermAttribute termAtt = getAttribute(CharTermAttribute.class);
// record all the Tokens seen so they can be dumped on failure
// record the last MAX_DEBUG_TOKENS tokens seen so they can be dumped on failure
private final List<Token> tokens = new LinkedList<>();
private final String name;