(Object first, Object second)
| 340 | } |
| 341 | |
| 342 | public static boolean equalObject(Object first, Object second) { |
| 343 | if (first == null || second == null) { |
| 344 | return first == null && second == null; |
| 345 | } |
| 346 | return first.equals(second); |
| 347 | } |
| 348 | |
| 349 | public static boolean equalsDouble(Double first, Double second) { |
| 350 | if (first == null || second == null) { |
no test coverage detected