Add this value, but only if it's not already in the list.
(int value)
| 290 | |
| 291 | /** Add this value, but only if it's not already in the list. */ |
| 292 | @SuppressWarnings("unused") |
| 293 | public void appendUnique(int value) { |
| 294 | if (!hasValue(value)) { |
| 295 | append(value); |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | |
| 300 | public void insert(int index, int value) { |
no test coverage detected