From 0eb214e0e8367085637d094d72818e6415862df4 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Tue, 3 Jan 2017 21:09:48 +1100 Subject: [PATCH] Remove deprecated Player.isOnGround because pushing it up the hierarchy is safe. By: md_5 --- .../src/main/java/org/bukkit/entity/Player.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/entity/Player.java b/paper-api/src/main/java/org/bukkit/entity/Player.java index cd36fbbdb..9e359a633 100644 --- a/paper-api/src/main/java/org/bukkit/entity/Player.java +++ b/paper-api/src/main/java/org/bukkit/entity/Player.java @@ -914,18 +914,6 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline */ public boolean canSee(Player player); - /** - * Checks to see if this player is currently standing on a block. This - * information may not be reliable, as it is a state provided by the - * client, and may therefore not be accurate. - * - * @return True if the player standing on a solid block, else false. - * @deprecated Inconsistent with {@link - * org.bukkit.entity.Entity#isOnGround()} - */ - @Deprecated - public boolean isOnGround(); - /** * Checks to see if this player is currently flying or not. *