Deprecate missed magic values from 1f83111208ab3612f384a2e6b65cc28423dc625e

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot 2014-04-01 20:50:06 -05:00
parent 43e2fb9739
commit cf7171f968

View File

@ -699,7 +699,9 @@ public interface World extends PluginMessageRecipient, Metadatable {
* @return The spawned {@link FallingBlock} instance
* @throws IllegalArgumentException if {@link Location} or {@link
* Material} are null or {@link Material} is not a block
* @deprecated Magic value
*/
@Deprecated
public FallingBlock spawnFallingBlock(Location location, Material material, byte data) throws IllegalArgumentException;
/**
@ -713,7 +715,9 @@ public interface World extends PluginMessageRecipient, Metadatable {
* @throws IllegalArgumentException if location is null, or blockId is
* invalid
* @see #spawnFallingBlock(org.bukkit.Location, org.bukkit.Material, byte)
* @deprecated Magic value
*/
@Deprecated
public FallingBlock spawnFallingBlock(Location location, int blockId, byte blockData) throws IllegalArgumentException;
/**