(Object o)
| 48 | } |
| 49 | |
| 50 | @Override |
| 51 | public boolean equals(Object o) { |
| 52 | if (o == null || getClass() != o.getClass()) { |
| 53 | return false; |
| 54 | } |
| 55 | FilePath filePath = (FilePath) o; |
| 56 | return Objects.equals( |
| 57 | normalize().removeTrailingSlash().value, filePath.normalize().removeTrailingSlash().value); |
| 58 | } |
| 59 | |
| 60 | public String toString() { |
| 61 | return value; |
no test coverage detected