(Object o)
| 12 | } |
| 13 | |
| 14 | @Override |
| 15 | public boolean equals(Object o) { |
| 16 | if (this == o) return true; |
| 17 | if (!(o instanceof Quin)) return false; |
| 18 | if (!super.equals(o)) return false; |
| 19 | |
| 20 | Quin quin = (Quin) o; |
| 21 | |
| 22 | return !(fifth != null ? !fifth.equals(quin.fifth) : quin.fifth != null); |
| 23 | |
| 24 | } |
| 25 | |
| 26 | @Override |
| 27 | public int hashCode() { |
no outgoing calls
no test coverage detected