(final Attribute attribute)
| 312 | } |
| 313 | |
| 314 | private void add(final Attribute attribute) { |
| 315 | if (size >= data.length) { |
| 316 | Attribute[] newData = new Attribute[data.length + SIZE_INCREMENT]; |
| 317 | System.arraycopy(data, 0, newData, 0, size); |
| 318 | data = newData; |
| 319 | } |
| 320 | data[size++] = attribute; |
| 321 | } |
| 322 | } |
| 323 | } |
no outgoing calls
no test coverage detected