]> Git Server - utils.git/commitdiff
test
authorRobin Cheney <cheneyr@eternal.ddnss.de>
Tue, 25 Nov 2025 07:53:53 +0000 (08:53 +0100)
committerRobin Cheney <cheneyr@eternal.ddnss.de>
Tue, 25 Nov 2025 07:53:53 +0000 (08:53 +0100)
src/main/java/de/ddnss/eternal/utils/io/input/AvailableCommands.java

index 58d90845ea917aa7f4730e1106edc6e42e69e503..faa2a11f0875e05036bde9445f857b1c25a72ba7 100644 (file)
@@ -12,17 +12,17 @@ import java.util.function.Function;
 public enum AvailableCommands {
     EXIT(() -> {
         System.exit(0);
-    }),
+    });
 
-    SAY((CommandOption<String> args) -> {
-        System.out.println("HI");
-        System.out.println(args.get("SAY"));
-        return null;
-    }),
+    // SAY((CommandOption<String> args) -> {
+    // System.out.println("HI");
+    // System.out.println(args.get("SAY"));
+    // return null;
+    // }),
 
-    GREET(() -> {
-        System.out.println("Hi");
-    });
+    // GREET(() -> {
+    // System.out.println("Hi");
+    // });
 
     public final Command<String> command;