Add this value, but only if it's not already in the list.
(String value)
| 320 | |
| 321 | /** Add this value, but only if it's not already in the list. */ |
| 322 | public void appendUnique(String value) { |
| 323 | if (!hasValue(value)) { |
| 324 | append(value); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | |
| 329 | // public void insert(int index, int value) { |
no test coverage detected