Skip to content

Commit 3d65f11

Browse files
committed
fix formatting
1 parent 1255066 commit 3d65f11

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

cloud-minecraft/cloud-brigadier/src/main/java/cloud/commandframework/brigadier/CloudBrigadierManager.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,9 @@ public void registerDefaultArgumentTypeSupplier(
677677
* @param <S> source type
678678
* @return parsed nodes
679679
*/
680-
private static <S> List<Pair<CommandNode<S>, StringRange>> getNodes(final com.mojang.brigadier.context.CommandContext<S> commandContext) {
680+
private static <S> List<Pair<CommandNode<S>, StringRange>> getNodes(
681+
final com.mojang.brigadier.context.CommandContext<S> commandContext
682+
) {
681683
try {
682684
final Method getNodesMethod = commandContext.getClass().getDeclaredMethod("getNodes");
683685
final Object nodes = getNodesMethod.invoke(commandContext);

0 commit comments

Comments
 (0)