diff --git a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java index 7126fe8..0558dad 100644 --- a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java +++ b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java @@ -361,6 +361,9 @@ public abstract class SWCommand { @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.PARAMETER}) protected @interface OptionalValue { - String defaultValue(); // Will pe parsed against the TypeMapper specified by the parameter or annotation + /** + * Will pe parsed against the TypeMapper specified by the parameter or annotation. + */ + String value(); } }