slachiewicz commented on code in PR #91: URL: https://github.com/apache/maven-project-info-reports-plugin/pull/91#discussion_r1885409367
########## src/main/java/org/apache/maven/report/projectinfo/DependenciesReport.java: ########## @@ -205,45 +205,27 @@ private DependencyNode resolveProject() { * @throws IOException if any */ private void copyResources(File outputDirectory) throws IOException { - InputStream resourceList = null; - InputStream in = null; - BufferedReader reader = null; - OutputStream out = null; - try { - resourceList = getClass().getClassLoader().getResourceAsStream(RESOURCES_DIR + "/resources.txt"); - - if (resourceList != null) { - reader = new LineNumberReader(new InputStreamReader(resourceList, ReaderFactory.US_ASCII)); - + InputStream resourceList = getClass().getClassLoader().getResourceAsStream(RESOURCES_DIR + "/resources.txt"); Review Comment: `InputStream` should be in try -- 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...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org