Skip to content

Commit 6288adb

Browse files
authored
Remove leftover missed timings calls (#11527)
* remove leftover timings calls * remove unused imports
1 parent e35f199 commit 6288adb

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

patches/server/0956-Brigadier-based-command-API.patch

+4-14
Original file line numberDiff line numberDiff line change
@@ -1858,13 +1858,12 @@ index 0000000000000000000000000000000000000000..5eef7ae5197bd395fbd6800530ffe34d
18581858
+}
18591859
diff --git a/src/main/java/io/papermc/paper/command/brigadier/bukkit/BukkitCommandNode.java b/src/main/java/io/papermc/paper/command/brigadier/bukkit/BukkitCommandNode.java
18601860
new file mode 100644
1861-
index 0000000000000000000000000000000000000000..0c3c82b28e581286b798ee58ca4193efc2faff4a
1861+
index 0000000000000000000000000000000000000000..1814cd072aaca3e72249f0509a9c3b3cb154eaba
18621862
--- /dev/null
18631863
+++ b/src/main/java/io/papermc/paper/command/brigadier/bukkit/BukkitCommandNode.java
1864-
@@ -0,0 +1,148 @@
1864+
@@ -0,0 +1,138 @@
18651865
+package io.papermc.paper.command.brigadier.bukkit;
18661866
+
1867-
+import co.aikar.timings.Timing;
18681867
+import com.mojang.brigadier.arguments.StringArgumentType;
18691868
+import com.mojang.brigadier.builder.RequiredArgumentBuilder;
18701869
+import com.mojang.brigadier.context.CommandContext;
@@ -1875,7 +1874,6 @@ index 0000000000000000000000000000000000000000..0c3c82b28e581286b798ee58ca4193ef
18751874
+import com.mojang.brigadier.tree.LiteralCommandNode;
18761875
+import io.papermc.paper.command.brigadier.CommandSourceStack;
18771876
+import java.util.ArrayList;
1878-
+import java.util.Collections;
18791877
+import net.minecraft.commands.CommandSource;
18801878
+import org.bukkit.Bukkit;
18811879
+import org.bukkit.ChatColor;
@@ -1888,7 +1886,6 @@ index 0000000000000000000000000000000000000000..0c3c82b28e581286b798ee58ca4193ef
18881886
+import java.util.List;
18891887
+import java.util.concurrent.CompletableFuture;
18901888
+import java.util.logging.Level;
1891-
+import org.bukkit.entity.Entity;
18921889
+import org.bukkit.entity.Player;
18931890
+import org.bukkit.event.server.TabCompleteEvent;
18941891
+
@@ -1942,18 +1939,11 @@ index 0000000000000000000000000000000000000000..0c3c82b28e581286b798ee58ca4193ef
19421939
+ public int run(CommandContext<CommandSourceStack> context) throws CommandSyntaxException {
19431940
+ CommandSender sender = context.getSource().getSender();
19441941
+
1945-
+ // Plugins do weird things to workaround normal registration
1946-
+ if (this.command.timings == null) {
1947-
+ this.command.timings = co.aikar.timings.TimingsManager.getCommandTiming(null, this.command);
1948-
+ }
1949-
+
19501942
+ String content = context.getRange().get(context.getInput());
19511943
+ String[] args = org.apache.commons.lang3.StringUtils.split(content, ' '); // fix adjacent spaces (from console/plugins) causing empty array elements
19521944
+
1953-
+ try (Timing ignored = this.command.timings.startTiming()) {
1954-
+ // Note: we don't return the result of target.execute as thats success / failure, we return handled (true) or not handled (false)
1955-
+ this.command.execute(sender, this.literal, Arrays.copyOfRange(args, 1, args.length));
1956-
+ }
1945+
+ // Note: we don't return the result of target.execute as thats success / failure, we return handled (true) or not handled (false)
1946+
+ this.command.execute(sender, this.literal, Arrays.copyOfRange(args, 1, args.length));
19571947
+
19581948
+ // return true as command was handled
19591949
+ return 1;

0 commit comments

Comments
 (0)