Commit f3b26525 authored by Andy Wilkinson's avatar Andy Wilkinson

Use System.out rather than err for ignored Class-Path entry message

Closes gh-9802
parent 68910f2b
......@@ -147,7 +147,7 @@ final class ChangeableUrls implements Iterable<URL> {
urls.add(referenced.toURI().toURL());
}
else {
System.err.println("Ignoring Class-Path entry " + entry + " found in "
System.out.println("Ignoring Class-Path entry " + entry + " found in "
+ jarFile.getName() + " as " + referenced
+ " does not exist");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment