(Object obj)
| 53 | } |
| 54 | |
| 55 | @Override |
| 56 | public boolean equals(Object obj) { |
| 57 | if (this == obj) return true; |
| 58 | if (obj == null) return false; |
| 59 | if (getClass() != obj.getClass()) return false; |
| 60 | TField otherField = (TField) obj; |
| 61 | return type == otherField.type && id == otherField.id; |
| 62 | } |
| 63 | } |
no outgoing calls