(Object o)
| 368 | |
| 369 | |
| 370 | @Override |
| 371 | public boolean equals(Object o) { |
| 372 | if (this == o) return true; |
| 373 | |
| 374 | if (o instanceof Contribution) { |
| 375 | Contribution that = (Contribution) o; |
| 376 | return name.toLowerCase().equals(that.name.toLowerCase()); |
| 377 | } |
| 378 | return false; |
| 379 | } |
| 380 | |
| 381 | |
| 382 | @Override |
no outgoing calls