dweiss commented on a change in pull request #567:
URL: https://github.com/apache/lucene/pull/567#discussion_r774530196



##########
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:
       This can actually be a non-filesystem URI in the future (if the test 
framework is jarred)... 




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to