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

commit 1461cc32e024816683f824273f6adee8415b0b35
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Sep 26 17:05:51 2024 -0400

    Javadoc
---
 src/main/java/org/apache/commons/lang3/Strings.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/lang3/Strings.java 
b/src/main/java/org/apache/commons/lang3/Strings.java
index d9428e3d4..0817482d1 100644
--- a/src/main/java/org/apache/commons/lang3/Strings.java
+++ b/src/main/java/org/apache/commons/lang3/Strings.java
@@ -308,7 +308,7 @@ public abstract class Strings {
     /**
      * Tests for equality in a null-safe manner.
      *
-     * JDK-8015417.
+     * See JDK-8015417.
      */
     private static boolean eq(final Object o1, final Object o2) {
         return o1 == null ? o2 == null : o1.equals(o2);

Reply via email to