From 3d9a16689230152972dfd5c4a783bdac57ca4235 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Thu, 6 May 2021 16:46:43 -0400 Subject: [PATCH] Fix Checkstyle --- api/src/main/java/com/velocitypowered/api/proxy/Player.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/main/java/com/velocitypowered/api/proxy/Player.java b/api/src/main/java/com/velocitypowered/api/proxy/Player.java index de31ae71d..540adc75e 100644 --- a/api/src/main/java/com/velocitypowered/api/proxy/Player.java +++ b/api/src/main/java/com/velocitypowered/api/proxy/Player.java @@ -229,13 +229,13 @@ public interface Player extends CommandSource, Identified, InboundConnection, void sendResourcePack(String url, byte[] hash); /** - * @inheritDoc - * * Note that this method does not send a plugin message to the server the player * is connected to. You should only use this method if you are trying to communicate * with a mod that is installed on the player's client. To send a plugin message to the server * from the player, you should use the equivalent method on the instance returned by * {@link #getCurrentServer()}. + * + * @inheritDoc */ @Override boolean sendPluginMessage(ChannelIdentifier identifier, byte[] data);