We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1255066 commit 3d65f11Copy full SHA for 3d65f11
1 file changed
cloud-minecraft/cloud-brigadier/src/main/java/cloud/commandframework/brigadier/CloudBrigadierManager.java
@@ -677,7 +677,9 @@ public void registerDefaultArgumentTypeSupplier(
677
* @param <S> source type
678
* @return parsed nodes
679
*/
680
- private static <S> List<Pair<CommandNode<S>, StringRange>> getNodes(final com.mojang.brigadier.context.CommandContext<S> commandContext) {
+ private static <S> List<Pair<CommandNode<S>, StringRange>> getNodes(
681
+ final com.mojang.brigadier.context.CommandContext<S> commandContext
682
+ ) {
683
try {
684
final Method getNodesMethod = commandContext.getClass().getDeclaredMethod("getNodes");
685
final Object nodes = getNodesMethod.invoke(commandContext);
0 commit comments