(Object o)
| 339 | |
| 340 | |
| 341 | @Override |
| 342 | public boolean equals(Object o) { |
| 343 | if (this == o) return true; |
| 344 | |
| 345 | if (o instanceof Contribution that) { |
| 346 | return name.equalsIgnoreCase(that.name); |
| 347 | } |
| 348 | return false; |
| 349 | } |
| 350 | |
| 351 | |
| 352 | // TODO remove this because it hides actual differences in objects |
no outgoing calls
no test coverage detected