From 79d70c27da46842992530675dbcb0eeedab2f4e5 Mon Sep 17 00:00:00 2001 From: kento2 Date: Mon, 10 Aug 2026 02:35:19 +0200 Subject: [PATCH] . --- .../de/kentoj/kencommandapi/api/invocation/CommandExecutor.java | 2 +- .../kencommandapi/api/invocation/SyncCommandExecutor.java | 2 +- defs.bzl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/de/kentoj/kencommandapi/api/invocation/CommandExecutor.java b/core/src/main/java/de/kentoj/kencommandapi/api/invocation/CommandExecutor.java index 23c5bca..4d45d9e 100644 --- a/core/src/main/java/de/kentoj/kencommandapi/api/invocation/CommandExecutor.java +++ b/core/src/main/java/de/kentoj/kencommandapi/api/invocation/CommandExecutor.java @@ -6,5 +6,5 @@ import java.util.concurrent.CompletableFuture; public interface CommandExecutor { - CompletableFuture execute(MessageStyle style, CommandContext ctx); + CompletableFuture execute(MessageStyle style, CommandContext ctx); } diff --git a/core/src/main/java/de/kentoj/kencommandapi/api/invocation/SyncCommandExecutor.java b/core/src/main/java/de/kentoj/kencommandapi/api/invocation/SyncCommandExecutor.java index 0ec1480..1c4ee3f 100644 --- a/core/src/main/java/de/kentoj/kencommandapi/api/invocation/SyncCommandExecutor.java +++ b/core/src/main/java/de/kentoj/kencommandapi/api/invocation/SyncCommandExecutor.java @@ -8,7 +8,7 @@ public interface SyncCommandExecutor extends CommandExecutor { void executeSync(MessageStyle style, CommandContext ctx); - default CompletableFuture execute(MessageStyle style, CommandContext ctx) { + default CompletableFuture execute(MessageStyle style, CommandContext ctx) { this.executeSync(style, ctx); return CompletableFuture.completedFuture(null); } diff --git a/defs.bzl b/defs.bzl index fa19f9c..4b7fb89 100644 --- a/defs.bzl +++ b/defs.bzl @@ -1,2 +1,2 @@ GROUP = "de.kentoj.scrow" -VERSION = "0.40-SNAPSHOT" \ No newline at end of file +VERSION = "0.41-SNAPSHOT" \ No newline at end of file