uschindler commented on a change in pull request #567: URL: https://github.com/apache/lucene/pull/567#discussion_r774546832
########## File path: lucene/test-framework/src/java/org/apache/lucene/tests/util/LuceneTestCase.java ########## @@ -2060,18 +2061,14 @@ protected Path getDataPath(String name) throws IOException { try { return Paths.get( IOUtils.requireResourceNonNull(this.getClass().getResource(name), name).toURI()); - } catch (Exception e) { - throw new IOException("Cannot find resource: " + name, e); + } catch (URISyntaxException e) { Review comment: Yes, this one may break. So we may need to hack around by using a ModuleClassLoader directly. -- 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