Add this value, but only if it's not already in the list.
(int value)
| 295 | |
| 296 | /** Add this value, but only if it's not already in the list. */ |
| 297 | public void appendUnique(int value) { |
| 298 | if (!hasValue(value)) { |
| 299 | append(value); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | |
| 304 | // public void insert(int index, int value) { |
no test coverage detected