From c88a3807e7fc90c3b60f98b79e2d8317e5e63e3c Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Tue, 11 Aug 2020 13:26:00 -0400 Subject: [PATCH] Checkstyle strikes again! --- .../proxy/protocol/packet/brigadier/PassthroughProperty.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;