Use System.out rather than err for ignored Class-Path entry message
Closes gh-9802
This commit is contained in:
parent
68910f2b8f
commit
f3b26525f7
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue