(@Nullable Object o)
| 190 | } |
| 191 | |
| 192 | @Override |
| 193 | public boolean equals(@Nullable Object o) { |
| 194 | if (o instanceof ForMapWithDefault) { |
| 195 | ForMapWithDefault<?, ?> that = (ForMapWithDefault<?, ?>) o; |
| 196 | return map.equals(that.map) |
| 197 | && Objects.equal(defaultValue, that.defaultValue); |
| 198 | } |
| 199 | return false; |
| 200 | } |
| 201 | |
| 202 | @Override |
| 203 | public int hashCode() { |