(final Attribute attribute)
| 303 | } |
| 304 | |
| 305 | private boolean contains(final Attribute attribute) { |
| 306 | for (int i = 0; i < size; ++i) { |
| 307 | if (data[i].type.equals(attribute.type)) { |
| 308 | return true; |
| 309 | } |
| 310 | } |
| 311 | return false; |
| 312 | } |
| 313 | |
| 314 | private void add(final Attribute attribute) { |
| 315 | if (size >= data.length) { |
no test coverage detected