Fix long argument examples

This commit is contained in:
Earthcomputer
2018-09-28 14:04:53 +02:00
committed by Nathan Adams
parent bbfb8a7da1
commit e60b24f36b
@@ -84,4 +84,9 @@ public class LongArgumentType implements ArgumentType<Long> {
return "longArg(" + minimum + ", " + maximum + ")"; return "longArg(" + minimum + ", " + maximum + ")";
} }
} }
@Override
public Collection<String> getExamples() {
return EXAMPLES;
}
} }