Relates :
|
|
Relates :
|
The JCK team has requested a specification clarification over whether the second call to addSuppressed below should trigger an NPE Throwable t = new Throwable(); t.addSuppressed(null); // Okay t.addSuppressed(null); // Currently triggers an NPE
|