Javadoc
This commit is contained in:
parent
479532b83d
commit
1461cc32e0
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue