Returns if the first and second arguments are equal to each other. Consequently, if both arguments are null, true is returned and if exactly one argument is null, false is returned. @param first an object @param second another object to be compared with the first obj
(A first, A second)
| 576 | * @see Object#equals(Object) |
| 577 | */ |
| 578 | default boolean equals(A first, A second) { |
| 579 | return Objects.equals(first, second); |
| 580 | } |
| 581 |
no outgoing calls