Method
equal
(Object obj1,Object obj2)
Source from the content-addressed store, hash-verified
| 449 | |
| 450 | |
| 451 | private static boolean equal(Object obj1,Object obj2) { |
| 452 | return obj1==null ? obj2==null : obj1.equals(obj2); |
| 453 | } |
| 454 | |
| 455 | |
| 456 | @Override |
Tested by
no test coverage detected