iverase commented on a change in pull request #7: URL: https://github.com/apache/lucene/pull/7#discussion_r727870901
########## File path: lucene/core/src/java/org/apache/lucene/index/ExitableDirectoryReader.java ########## @@ -372,6 +372,12 @@ private void checkAndThrow() { } } + @Override + public IndexTree getIndexTree() throws IOException { + checkAndThrow(); + return in.getIndexTree(); + } Review comment: added a TODO. One of the ideas I had was to make intersects method final in PointValues API, so in that case this would be a must. That was another reason for opening #371, as it is pretty hard doing that without that change. -- 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