(Object obj)
| 409 | } |
| 410 | |
| 411 | @Override |
| 412 | public boolean equals(Object obj) { |
| 413 | if (obj instanceof PigStorage) |
| 414 | return equals((PigStorage)obj); |
| 415 | else |
| 416 | return false; |
| 417 | } |
| 418 | |
| 419 | public boolean equals(PigStorage other) { |
| 420 | return this.fieldDel == other.fieldDel; |
no outgoing calls
no test coverage detected