Details
Description
In function toString() of org.eclipse.jetty.server.handler.ContextHandler.java
There is line:
String p = getClass().getPackage().getName();
If getPackage() return null function toString() throw NULL exception
I think it should by something like this:
String p = (getClass().getPackage()!=null)?(getClass().getPackage().getName()):(null);
Activity
Jan Bartel
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Assignee | Jan Bartel [ janb ] |
Jan Bartel
made changes -
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Fix Version/s | 7.6.0 [ 17652 ] | |
| Resolution | Fixed [ 1 ] |
Fixed.