https://bz.apache.org/bugzilla/show_bug.cgi?id=69331

elatl...@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |NEW

--- Comment #2 from elatl...@gmail.com ---
No need for a test case when there is a stack trace,
just use standard NPE avoidance practices;

- if (method.equals(METHOD_GET)) {
+ if (METHOD_GET.equals(method)) {

etc.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to