summaryrefslogtreecommitdiffstats
path: root/src/main/java
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2015-01-05 10:00:40 +1100
committermd_5 <git@md-5.net>2015-01-05 10:00:40 +1100
commit8effa51854b1a0ada4007c1d4f28c8800e2e79ae (patch)
tree9fd34968c76b96fe026121ceff75807087509a94 /src/main/java
parenta2aa082c09ebd0f2372d2f920310a37f95513b0a (diff)
downloadbukkit-8effa51854b1a0ada4007c1d4f28c8800e2e79ae.tar
bukkit-8effa51854b1a0ada4007c1d4f28c8800e2e79ae.tar.gz
bukkit-8effa51854b1a0ada4007c1d4f28c8800e2e79ae.tar.lz
bukkit-8effa51854b1a0ada4007c1d4f28c8800e2e79ae.tar.xz
bukkit-8effa51854b1a0ada4007c1d4f28c8800e2e79ae.zip
SPIGOT-323: Enchanting tables can no longer be force opened. (reverted from commit a2aa082c09ebd0f2372d2f920310a37f95513b0a)
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/org/bukkit/entity/HumanEntity.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main/java/org/bukkit/entity/HumanEntity.java b/src/main/java/org/bukkit/entity/HumanEntity.java
index edcdce32..3f8646dd 100644
--- a/src/main/java/org/bukkit/entity/HumanEntity.java
+++ b/src/main/java/org/bukkit/entity/HumanEntity.java
@@ -82,25 +82,11 @@ public interface HumanEntity extends LivingEntity, AnimalTamer, Permissible, Inv
*
* @param location The location to attach it to. If null, the player's
* location is used.
- * @return The newly opened inventory view, or null if it could not be
- * opened.
- * @deprecated You cannot force open an enchanting table.
- */
- public InventoryView openEnchanting(Location location);
-
- /**
- * Opens an empty enchanting inventory window with the player's inventory
- * on the bottom.
- *
- * @param location The location to attach it to. If null, the player's
- * location is used.
* @param force If false, and there is no enchanting table at the
* location, no inventory will be opened and null will be returned.
* @return The newly opened inventory view, or null if it could not be
* opened.
- * @deprecated You cannot force open an enchanting table.
*/
- @Deprecated
public InventoryView openEnchanting(Location location, boolean force);
/**