diff --git a/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java index 87505b44f..f88f58c7b 100644 --- a/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java @@ -25,9 +25,9 @@ import java.util.UUID; public interface OfflinePlotPlayer extends PermissionHolder { /** - * Gets the {@code UUID} of this player + * Returns the UUID of the player. * - * @return the player {@link UUID} + * @return the UUID of the player */ UUID getUUID(); @@ -39,9 +39,9 @@ public interface OfflinePlotPlayer extends PermissionHolder { long getLastPlayed(); /** - * Gets the name of this player. + * Returns the name of the player. * - * @return the player name + * @return the name of the player */ String getName(); diff --git a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java index 6bb9e1bad..74bb89294 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java @@ -273,8 +273,9 @@ public abstract class PlotPlayer

implements CommandCaller, OfflinePlotPlayer, return this.meta == null ? null : this.meta.remove(key); } + /** - * This player's name. + * Returns the name of the player. * * @return the name of the player */