zacharymorn commented on a change in pull request #128: URL: https://github.com/apache/lucene/pull/128#discussion_r634956106
########## File path: lucene/core/src/java/org/apache/lucene/index/CheckIndex.java ########## @@ -468,6 +495,10 @@ private static void msg(PrintStream out, String msg) { if (out != null) out.println(msg); } + private static void msg(PrintStream out, String id, String msg) { + if (out != null) out.println(id + " " + msg); Review comment: Done. ########## File path: lucene/core/src/java/org/apache/lucene/index/CheckIndex.java ########## @@ -372,6 +384,14 @@ private FieldNormStatus() {} /** Exception thrown during term index test (null on success) */ public Throwable error = null; } + + /** Status from testing soft deletes */ + public static final class SoftDeletsStatus { + SoftDeletsStatus() {} + + /** Exception thrown during soft deletes test (null on success) */ + public Throwable error = null; Review comment: Removed, as well as the same ones used in other status classes. -- 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. 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