(Object obj)
| 258 | } |
| 259 | |
| 260 | @Override |
| 261 | public boolean equals(Object obj) { |
| 262 | if (obj instanceof Scoping) { |
| 263 | Scoping o = (Scoping) obj; |
| 264 | return Objects.equal(getScopeAnnotation(), o.getScopeAnnotation()) |
| 265 | && Objects.equal(getScopeInstance(), o.getScopeInstance()); |
| 266 | } else { |
| 267 | return false; |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | @Override |
| 272 | public int hashCode() { |
nothing calls this directly
no test coverage detected