jpountz commented on code in PR #12797: URL: https://github.com/apache/lucene/pull/12797#discussion_r1401280939
########## lucene/core/src/java/org/apache/lucene/index/CheckIndex.java: ########## @@ -2382,7 +2365,7 @@ private static Status.TermIndexStatus checkFields( static void checkImpacts(Impacts impacts, int lastTarget) { final int numLevels = impacts.numLevels(); if (numLevels < 1) { - throw new CheckIndexException("The number of levels must be >= 1, got " + numLevels); + throw new CheckIndexException("The number of impactsLevels must be >= 1, got " + numLevels); Review Comment: ```suggestion throw new CheckIndexException("The number of impact levels must be >= 1, got " + numLevels); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org