Skip to content

Commit

Permalink
Version 0.1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinnerbone committed Feb 7, 2018
1 parent ed3ecfb commit 0b24148
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import groovy.io.FileType
apply plugin: 'java-library'
apply plugin: 'maven'

version = '0.1.23'
version = '0.1.24'
group = 'com.mojang'

task wrapper(type: Wrapper) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@ public SuggestionsBuilder suggest(final String text, final Message tooltip) {
return this;
}

public SuggestionsBuilder add(final SuggestionsBuilder other) {
result.addAll(other.result);
return this;
}

public SuggestionsBuilder createOffset(final int start) {
return new SuggestionsBuilder(input, start);
}

public SuggestionsBuilder restart() {
return new SuggestionsBuilder(input, start);
}
Expand Down

0 comments on commit 0b24148

Please sign in to comment.