(Object o)
| 339 | } |
| 340 | |
| 341 | @Override |
| 342 | public boolean equals(Object o) { |
| 343 | if (!(o instanceof FsPath)) { |
| 344 | return false; |
| 345 | } |
| 346 | FsPath that = (FsPath) o; |
| 347 | return this.uri.equals(that.uri); |
| 348 | } |
| 349 | |
| 350 | @Override |
| 351 | public int hashCode() { |
no outgoing calls