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