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 cebde0312 Javadoc
cebde0312 is described below

commit cebde0312d37eb5b9f8efb1974ef322bdb25142c
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jan 26 16:35:43 2026 -0500

    Javadoc
---
 src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java | 2 +-
 1 file changed, 1 insertion(+), 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 6be70bf1a..b88b9570d 100644
--- a/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
+++ b/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
@@ -732,7 +732,7 @@ public HashCodeBuilder append(final int[] array) {
     // NOTE: This method uses >> and not >>> as Effective Java and
     //       Long.hashCode do. Ideally we should switch to >>> at
     //       some stage. There are backwards compat issues, so
-    //       that will have to wait for the time being. cf LANG-342.
+    //       that will have to wait for the time being. See LANG-342.
     public HashCodeBuilder append(final long value) {
         iTotal = iTotal * iConstant + (int) (value ^ value >> 32);
         return this;

Reply via email to