(Object obj)
| 143 | } |
| 144 | |
| 145 | @Override |
| 146 | public boolean equals(Object obj) { |
| 147 | if (this == obj) |
| 148 | return true; |
| 149 | if (obj == null) |
| 150 | return false; |
| 151 | if (getClass() != obj.getClass()) |
| 152 | return false; |
| 153 | Link other = (Link) obj; |
| 154 | if (id == null) { |
| 155 | if (other.id != null) |
| 156 | return false; |
| 157 | } else if (!id.equals(other.id)) |
| 158 | return false; |
| 159 | return true; |
| 160 | } |
| 161 | |
| 162 | } |
no outgoing calls
no test coverage detected