Deprecate magic values

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot
2013-08-19 13:32:18 -05:00
parent d9f3848e22
commit f9bec6eadd
108 changed files with 1194 additions and 11 deletions

View File

@ -11,6 +11,11 @@ public class Sign extends MaterialData implements Attachable {
super(Material.SIGN_POST);
}
/**
*
* @deprecated Magic value
*/
@Deprecated
public Sign(final int type) {
super(type);
}
@ -19,10 +24,20 @@ public class Sign extends MaterialData implements Attachable {
super(type);
}
/**
*
* @deprecated Magic value
*/
@Deprecated
public Sign(final int type, final byte data) {
super(type, data);
}
/**
*
* @deprecated Magic value
*/
@Deprecated
public Sign(final Material type, final byte data) {
super(type, data);
}