This commit is contained in:
Gary Gregory 2024-09-26 17:05:51 -04:00
parent 479532b83d
commit 1461cc32e0
1 changed files with 1 additions and 1 deletions

View File

@ -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);