(Object other)
| 156 | } |
| 157 | |
| 158 | @Override |
| 159 | public boolean equals(Object other) { |
| 160 | if (other instanceof Path) { |
| 161 | Path that = (Path) other; |
| 162 | return this.first.equals(that.first) |
| 163 | && ConfigImplUtil.equalsHandlingNull(this.remainder, |
| 164 | that.remainder); |
| 165 | } else { |
| 166 | return false; |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | @Override |
| 171 | public int hashCode() { |
no test coverage detected