This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 351510bf0 Remove extra vertical whitespace
351510bf0 is described below
commit 351510bf02ee0e8d5583aa68f840a869af816bdf
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jan 24 07:20:43 2026 -0500
Remove extra vertical whitespace
---
src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
b/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
index 8e0007da6..6be70bf1a 100644
--- a/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
+++ b/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
@@ -766,7 +766,6 @@ public HashCodeBuilder append(final long[] array) {
public HashCodeBuilder append(final Object object) {
if (object == null) {
iTotal = iTotal * iConstant;
-
} else if (ObjectUtils.isArray(object)) {
// factor out array case in order to keep method small enough
// to be inlined