Benedikt Ritter created LANG-924:
------------------------------------

             Summary: 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
             Fix For: Review Patch


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)

Reply via email to