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)
| 55 | |
| 56 | |
| 57 | public static boolean equal(@Nullable Object a, @Nullable Object b) { |
| 58 | return a == b || (a != null && a.equals(b)); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Generates a hash code for multiple values. The hash code is generated by calling |
no test coverage detected