Removing 14 deprecated methods per http://bit.ly/mO2f4d

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot
2011-06-16 22:06:18 +01:00
parent 876c4074ba
commit dc11d556ba
6 changed files with 9 additions and 90 deletions

View File

@@ -42,17 +42,6 @@ public class Coal extends MaterialData {
return CoalType.getByData(getData());
}
/**
* Sets the type of this coal
*
* @param type New type of this coal
* @deprecated use {@link #setType(CoalType)} instead
*/
@Deprecated
public void setSpecies(CoalType type) {
setType(type);
}
/**
* Sets the type of this coal
*

View File

@@ -33,17 +33,6 @@ public class Crops extends MaterialData {
super(type, data);
}
/**
* Gets the current growth state of this crop
*
* @return CropState of this leave
* @deprecated use {@link #getState()} instead
*/
@Deprecated
public CropState getSpecies() {
return getState();
}
/**
* Gets the current growth state of this crop
*
@@ -53,17 +42,6 @@ public class Crops extends MaterialData {
return CropState.getByData(getData());
}
/**
* Sets the growth state of this crop
*
* @param state New growth state of this crop
* @deprecated use {@link #setState(CropState)} instead
*/
@Deprecated
public void setSpecies(CropState state) {
setState(state);
}
/**
* Sets the growth state of this crop
*