You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the javadoc of the official API of java/lang/ClassLoader.findResources it is mentioned that this method will always return an Enumeration. While OpenJDK does protect against null this is by no means a requirement. In order to increase robustness and compatibility with other VMs, it is best to not return null or at least not in this specific inherited method.
The text was updated successfully, but these errors were encountered:
quarkus/independent-projects/bootstrap/runner/src/main/java/io/quarkus/bootstrap/runner/RunnerClassLoader.java
Line 196 in ba778a7
In the javadoc of the official API of
java/lang/ClassLoader.findResources
it is mentioned that this method will always return anEnumeration
. While OpenJDK does protect againstnull
this is by no means a requirement. In order to increase robustness and compatibility with other VMs, it is best to not returnnull
or at least not in this specific inherited method.The text was updated successfully, but these errors were encountered: