Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Sep 26, 2024
1 parent 479532b commit 1461cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/lang3/Strings.java
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ private static boolean containsAny(final ToBooleanBiFunction<CharSequence, CharS
/**
* 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);
Expand Down

0 comments on commit 1461cc3

Please sign in to comment.