javanna commented on code in PR #12285: URL: https://github.com/apache/lucene/pull/12285#discussion_r1190852583
########## lucene/core/src/java/org/apache/lucene/search/SliceExecutor.java: ########## @@ -28,54 +29,30 @@ class SliceExecutor { private final Executor executor; - public SliceExecutor(Executor executor) { - this.executor = executor; + SliceExecutor(Executor executor) { + this.executor = Objects.requireNonNull(executor, "Executor is null"); } - public void invokeAll(Collection<? extends Runnable> tasks) { - - if (tasks == null) { Review Comment: it is going to throw NPE two lines below once we loop through it, I am not sure I see value in checking that here, do you? -- 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