From f2f187f58d37a18038cea747c12cdd7e73448a00 Mon Sep 17 00:00:00 2001 From: jmp Date: Mon, 14 Dec 2020 16:27:50 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../annotations/injection/ParameterInjector.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename {cloud-annotations => cloud-core}/src/main/java/cloud/commandframework/annotations/injection/ParameterInjector.java (92%) diff --git a/cloud-annotations/src/main/java/cloud/commandframework/annotations/injection/ParameterInjector.java b/cloud-core/src/main/java/cloud/commandframework/annotations/injection/ParameterInjector.java similarity index 92% rename from cloud-annotations/src/main/java/cloud/commandframework/annotations/injection/ParameterInjector.java rename to cloud-core/src/main/java/cloud/commandframework/annotations/injection/ParameterInjector.java index ebeecdbf..51d97eeb 100644 --- a/cloud-annotations/src/main/java/cloud/commandframework/annotations/injection/ParameterInjector.java +++ b/cloud-core/src/main/java/cloud/commandframework/annotations/injection/ParameterInjector.java @@ -29,7 +29,7 @@ import org.checkerframework.checker.nullness.qual.NonNull; 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 * * @param Command sender type @@ -40,7 +40,7 @@ import org.checkerframework.checker.nullness.qual.Nullable; public interface ParameterInjector { /** - * 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}. * * @param context Command context that is requesting the injection