diff --git a/proxy/src/main/java/com/velocitypowered/proxy/protocol/packet/brigadier/PassthroughProperty.java b/proxy/src/main/java/com/velocitypowered/proxy/protocol/packet/brigadier/PassthroughProperty.java index 0679e18d4..deb5bdda3 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/protocol/packet/brigadier/PassthroughProperty.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/protocol/packet/brigadier/PassthroughProperty.java @@ -10,7 +10,8 @@ class PassthroughProperty implements ArgumentType { private final ArgumentPropertySerializer serializer; private final @Nullable T result; - PassthroughProperty(String identifier, ArgumentPropertySerializer serializer, @Nullable T result) { + PassthroughProperty(String identifier, ArgumentPropertySerializer serializer, + @Nullable T result) { this.identifier = identifier; this.serializer = serializer; this.result = result;