🐛 Fix build

This commit is contained in:
jmp 2020-12-14 16:27:50 -08:00 committed by Alexander Söderberg
parent 2f077e03f3
commit f2f187f58d

View file

@ -29,7 +29,7 @@ import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable; import org.checkerframework.checker.nullness.qual.Nullable;
/** /**
* Injector that injects parameters into {@link cloud.commandframework.annotations.CommandMethod} annotated * Injector that injects parameters into CommandMethod annotated
* methods * methods
* *
* @param <C> Command sender type * @param <C> Command sender type
@ -40,7 +40,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
public interface ParameterInjector<C, T> { public interface ParameterInjector<C, T> {
/** /**
* Attempt to create a a value that should then be injected into the {@link cloud.commandframework.annotations.CommandMethod} * Attempt to create a a value that should then be injected into the CommandMethod
* annotated method. If the injector cannot (or shouldn't) create a value, it is free to return {@code null}. * annotated method. If the injector cannot (or shouldn't) create a value, it is free to return {@code null}.
* *
* @param context Command context that is requesting the injection * @param context Command context that is requesting the injection