| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | package easytests.core.models.empty; |
||
| 32 | @Override |
||
| 33 | public boolean equals(Object object) { |
||
| 34 | if (this == object) { |
||
| 35 | return true; |
||
| 36 | } |
||
| 37 | if (getClass() != object.getClass()) { |
||
|
|
|||
| 38 | return false; |
||
| 39 | } |
||
| 40 | final AbstractModelEmpty other = (AbstractModelEmpty) object; |
||
| 41 | if (this.id == other.id) { |
||
| 42 | return true; |
||
| 43 | } |
||
| 44 | return false; |
||
| 45 | } |
||
| 52 |