[
https://issues.apache.org/jira/browse/TAPESTRY-2253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Howard M. Lewis Ship updated TAPESTRY-2253:
-------------------------------------------
Priority: Trivial (was: Major)
Assignee: Howard M. Lewis Ship (was: Kevin Menard)
> Required Validator can produce NullPointerExceptions
> ----------------------------------------------------
>
> Key: TAPESTRY-2253
> URL: https://issues.apache.org/jira/browse/TAPESTRY-2253
> Project: Tapestry
> Issue Type: Improvement
> Components: tapestry-core
> Affects Versions: 5.0.12
> Reporter: Kristian Marinkovic
> Assignee: Howard M. Lewis Ship
> Priority: Trivial
>
> the validate method of the Required validator contains following code line:
> if (value == null || value.toString().equals(""))...
> if the toString method returns null an exception will occur (happened to me
> accidentally :))
> this code line should at least be changed to:
> if (value == null || "".equals(value.toString())... to prevent NPE
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]