Skip to content

Commit

Permalink
new tabcompletions builder method for string arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jul 28, 2022
1 parent e716f9a commit 9e33281
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -91,6 +91,12 @@ public final void add(String a, String... values) {
}
}

public final void add(String[] values) {
for (String val : values) {
add(val);
}
}

public final void add(Set<String> values) {
for (String val : values) {
add(val);
Expand Down

0 comments on commit 9e33281

Please sign in to comment.