Determines whether two possibly-null objects are equal. Returns: true if a and b are both null. true if a and b are both non-null and they are equal according to Object#equals(Object). false in all other situations
(@Nullable Object a, @Nullable Object b)
| 54 | * {@link java.util.Objects#equals} instead. |
| 55 | */ |
| 56 | public static boolean equal(@Nullable Object a, @Nullable Object b) { |
| 57 | return a == b || (a != null && a.equals(b)); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Generates a hash code for multiple values. The hash code is generated by calling |
no test coverage detected