[
https://issues.apache.org/jira/browse/LANG-924?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Henri Yandell updated LANG-924:
-------------------------------
Fix Version/s: (was: Review Patch)
> In FieldUtils replace Validate.isTrue(object != null) with
> Validate.notNull(object)
> -----------------------------------------------------------------------------------
>
> Key: LANG-924
> URL: https://issues.apache.org/jira/browse/LANG-924
> Project: Commons Lang
> Issue Type: Bug
> Components: lang.reflect.*
> Affects Versions: 3.1
> Reporter: Benedikt Ritter
>
> Methods in FieldUtils validate input using code like:
> {code}
> Validate.isTrue(cls != null, "The class must not be null")
> {code}
> This could be changed to:
> {code}
> Validate.notNull(cls, "The class must not be null")
> {code}
> However this could affect client code, since isTrue(boolean) throws
> IllegalArgumentException and notNull throws NullPointerException.
--
This message was sent by Atlassian JIRA
(v6.1#6144)