(Object o)
| 219 | } |
| 220 | |
| 221 | @Override |
| 222 | public boolean equals(Object o) |
| 223 | { |
| 224 | if (o instanceof WieldCategory other) |
| 225 | { |
| 226 | /* |
| 227 | * Lightweight check due to ReferenceManufacturer enforcement |
| 228 | */ |
| 229 | return categoryName.equals(other.categoryName); |
| 230 | } |
| 231 | return false; |
| 232 | } |
| 233 | } |
no test coverage detected