(Object obj)
| 259 | } |
| 260 | |
| 261 | @Override |
| 262 | public boolean equals(Object obj) { |
| 263 | if (obj == this) return true; |
| 264 | if (obj == null) return false; |
| 265 | if (obj.getClass() != getClass()) return false; |
| 266 | Box box = (Box) obj; |
| 267 | if (!Objects.equal(min, box.min)) return false; |
| 268 | if (!Objects.equal(max, box.max)) return false; |
| 269 | return true; |
| 270 | } |
| 271 | |
| 272 | @Override |
| 273 | public int hashCode() { |
no outgoing calls