📚 Add missing @Since annotations

This commit is contained in:
Alexander Söderberg 2020-10-22 06:34:41 +02:00 committed by Alexander Söderberg
parent 60dd74915a
commit da0d586e52
5 changed files with 11 additions and 4 deletions

View file

@ -85,6 +85,7 @@ public interface ArgumentParser<C, T> {
* consume
*
* @return The number of arguments tha the parser expects
* @since 1.1.0
*/
default int getRequestedArgumentCount() {
return DEFAULT_ARGUMENT_COUNT;

View file

@ -201,7 +201,8 @@ public final class IntegerArgument<C> extends CommandArgument<C, Integer> {
public static @NonNull List<@NonNull String> getSuggestions(
final long min,
final long max,
final @NonNull String input) {
final @NonNull String input
) {
final Set<Long> numbers = new TreeSet<>();
try {