(final Object obj)
| 507 | } |
| 508 | |
| 509 | @Override |
| 510 | public boolean equals(final Object obj) { |
| 511 | if (this == obj) { |
| 512 | return true; |
| 513 | } |
| 514 | if (obj == null) { |
| 515 | return false; |
| 516 | } |
| 517 | if (this.getClass() != obj.getClass()) { |
| 518 | return false; |
| 519 | } |
| 520 | |
| 521 | final CardEdition other = (CardEdition) obj; |
| 522 | return other.name.equals(this.name) && this.code.equals(other.code); |
| 523 | } |
| 524 | |
| 525 | @Override |
| 526 | public String toString() { |
no outgoing calls
no test coverage detected