diff --git a/SpigotCore_Main/src/de/steamwar/command/ArgumentType.java b/SpigotCore_Main/src/de/steamwar/command/ArgumentType.java index 04df678..9927841 100644 --- a/SpigotCore_Main/src/de/steamwar/command/ArgumentType.java +++ b/SpigotCore_Main/src/de/steamwar/command/ArgumentType.java @@ -30,7 +30,7 @@ public class ArgumentType { public static final ArgumentType LONG = new ArgumentType<>(Long::parseLong, true); public static final ArgumentType FLOAT = new ArgumentType<>(Float::parseFloat, true); public static final ArgumentType DOUBLE = new ArgumentType<>(Double::parseDouble, true); - public static final ArgumentType STRING = new ArgumentType<>((s) -> s, false); + public static final ArgumentType STRING = new ArgumentType<>(s -> s, false); Function mapper; boolean number;