mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 01:10:37 +01:00
26 lines
875 B
Diff
26 lines
875 B
Diff
From cd9f774fd319b7bc548a18585c2ac16cbc61076a Mon Sep 17 00:00:00 2001
|
|
From: drXor <mcyoung@mit.edu>
|
|
Date: Wed, 23 Jul 2014 15:50:36 -0400
|
|
Subject: [PATCH] Undeprecate Player#updateInventory()V
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
|
index eb5084b..a89df18 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -334,10 +334,8 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline
|
|
/**
|
|
* Forces an update of the player's entire inventory.
|
|
*
|
|
- * @deprecated This method should not be relied upon as it is a temporary
|
|
- * work-around for a larger, more complicated issue.
|
|
*/
|
|
- @Deprecated
|
|
+ //@Deprecated // Spigot - undeprecate
|
|
public void updateInventory();
|
|
|
|
/**
|
|
--
|
|
2.5.0
|
|
|