(Object obj)
| 12 | } |
| 13 | |
| 14 | @Override |
| 15 | public boolean equals(Object obj) { |
| 16 | return obj instanceof Pair && |
| 17 | Objects.equals(((Pair<?, ?>) obj).left, left) && |
| 18 | Objects.equals(((Pair<?, ?>) obj).right, right); |
| 19 | } |
| 20 | |
| 21 | @Override |
| 22 | public int hashCode() { |
no outgoing calls
no test coverage detected