struberg commented on code in PR #1328:
URL: https://github.com/apache/commons-lang/pull/1328#discussion_r1870907060
##########
src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java:
##########
@@ -731,7 +732,8 @@ public EqualsBuilder append(final Object lhs, final Object
rhs) {
// to be inlined
appendArray(lhs, rhs);
} else // The simple case, not an array, just test the element
- if (testRecursive && !ClassUtils.isPrimitiveOrWrapper(lhsClass)) {
+ if (testRecursive && !ClassUtils.isPrimitiveOrWrapper(lhsClass)
Review Comment:
is now in the JavaDocs of Reflection#isJavaInternalClass(). That should
resolve this and all similar situations.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]