-
Type:
Sub-task
-
Resolution: Delivered
-
Priority:
P4
-
Affects Version/s: 9
-
Component/s: core-libs
-
Verified
The spec of the following `java.lang.ClassLoader` methods for locating a resource by name are updated to throw `NullPointerException` when the specified name is null:
```
getResource(String)
getResourceAsStream(String)
getResources(String)
```
Custom class loader implementations that override these methods should be updated accordingly to conform to this spec.
```
getResource(String)
getResourceAsStream(String)
getResources(String)
```
Custom class loader implementations that override these methods should be updated accordingly to conform to this spec.