Add changelog

This commit is contained in:
Alexander Söderberg 2021-07-07 19:21:56 +01:00 committed by Jason
parent 7bb5e63dc7
commit 5934c2fd3b
6 changed files with 20 additions and 1 deletions

View file

@ -190,6 +190,7 @@ public final class AnnotationParser<C> {
* Returns the command manager that was used to create this parser
*
* @return Command manager
* @since 1.6.0
*/
public @NonNull CommandManager<C> manager() {
return this.manager;
@ -201,6 +202,7 @@ public final class AnnotationParser<C> {
*
* @param predicate The predicate that decides whether or not to apply the custom execution handler to the given method
* @param function The function that produces the command execution handler
* @since 1.6.0
*/
public void registerCommandExecutionMethodFactory(
final @NonNull Predicate<@NonNull Method> predicate,

View file

@ -44,6 +44,7 @@ import java.util.Optional;
* A command execution handler that invokes a method.
*
* @param <C> Command sender type.
* @since 1.6.0 (Was made public in 1.6.0)
*/
public class MethodCommandExecutionHandler<C> implements CommandExecutionHandler<C> {