[ http://issues.apache.org/jira/browse/LANG-67?page=all ]
Henri Yandell closed LANG-67:
-----------------------------
Resolution: Duplicate
Closing again.
> [lang] NPE in EqualsBuilder when field in multiarray == null
> ------------------------------------------------------------
>
> Key: LANG-67
> URL: http://issues.apache.org/jira/browse/LANG-67
> Project: Commons Lang
> Type: Bug
> Versions: 2.0
> Environment: Operating System: All
> Platform: All
> Reporter: Michael
>
> The EqualsBuilder.append(Object[] lhs, Object[] rhs) gives a Nullpointer in
> cases of multi dimensional arrays with null fields when reflectEqual an
> object
> containing a 3D Object array.
> Fix:
> <...>
> for (int i = 0; i < lhs.length && isEquals; ++i) {
> // Fix when element is null
> if ( lhs[i] != null ) {
> Class lhsClass = lhs[i].getClass();
> if (!lhsClass.isInstance(rhs[i])) {
> isEquals = false; //If the types don't match, not equal
> break;
> }
> }
> append(lhs[i], rhs[i]);
> }
> <...>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]