Fix long argument examples

This commit is contained in:
Earthcomputer 2018-09-27 20:44:47 +01:00 committed by Nathan Adams
parent bbfb8a7da1
commit e60b24f36b

View file

@ -84,4 +84,9 @@ public class LongArgumentType implements ArgumentType<Long> {
return "longArg(" + minimum + ", " + maximum + ")";
}
}
@Override
public Collection<String> getExamples() {
return EXAMPLES;
}
}