(@Nullable Object obj)
| 126 | } |
| 127 | |
| 128 | @Override |
| 129 | public boolean equals(@Nullable Object obj) { |
| 130 | if (obj instanceof Parameter) { |
| 131 | Parameter that = (Parameter) obj; |
| 132 | return position == that.position && declaration.equals(that.declaration); |
| 133 | } |
| 134 | return false; |
| 135 | } |
| 136 | |
| 137 | @Override |
| 138 | public int hashCode() { |