(Object obj)
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public boolean equals(Object obj) { |
| 47 | if (this == obj) |
| 48 | return true; |
| 49 | if (obj == null) |
| 50 | return false; |
| 51 | if (getClass() != obj.getClass()) |
| 52 | return false; |
| 53 | SeedUrl other = (SeedUrl) obj; |
| 54 | if (id == null) { |
| 55 | if (other.id != null) |
| 56 | return false; |
| 57 | } else if (!id.equals(other.id)) |
| 58 | return false; |
| 59 | return true; |
| 60 | } |
| 61 | } |
no outgoing calls
no test coverage detected