From c8d32801dbd0ad453c5ed3bb7712d08096ed708d Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Sat, 4 Feb 2023 16:29:09 -0600 Subject: [PATCH] Fix checkstyle warnings --- .../java/com/velocitypowered/api/proxy/server/ServerPing.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/main/java/com/velocitypowered/api/proxy/server/ServerPing.java b/api/src/main/java/com/velocitypowered/api/proxy/server/ServerPing.java index 19734c3381..f4179f4550 100644 --- a/api/src/main/java/com/velocitypowered/api/proxy/server/ServerPing.java +++ b/api/src/main/java/com/velocitypowered/api/proxy/server/ServerPing.java @@ -430,8 +430,8 @@ public int hashCode() { public static final class SamplePlayer { public static final SamplePlayer ANONYMOUS = new SamplePlayer( - "Anonymous Player", - new UUID(0L, 0L), + "Anonymous Player", + new UUID(0L, 0L) ); private final String name; private final UUID id;