(final Object o)
| 20 | } |
| 21 | |
| 22 | @Override |
| 23 | public boolean equals(final Object o) { |
| 24 | if (this == o) { |
| 25 | return true; |
| 26 | } |
| 27 | |
| 28 | if (o == null || getClass() != o.getClass()) { |
| 29 | return false; |
| 30 | } |
| 31 | |
| 32 | final DbPath dbPath = (DbPath) o; |
| 33 | |
| 34 | if (targetSize != dbPath.targetSize) { |
| 35 | return false; |
| 36 | } |
| 37 | |
| 38 | return path != null ? path.equals(dbPath.path) : dbPath.path == null; |
| 39 | } |
| 40 | |
| 41 | @Override |
| 42 | public int hashCode() { |
no test coverage detected