1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

add since

This commit is contained in:
JustAHuman-xD 2023-07-05 23:49:56 -05:00
parent d0cb47f947
commit 506cd65a18
3 changed files with 6 additions and 8 deletions

View File

@ -47,11 +47,11 @@ public class ElectricGoldPan extends AContainer implements RecipeDisplayItem {
} }
/** /**
* @deprecated * @deprecated since RC-36
* *
* @see ElectricGoldPan#isOutputLimitOverridden() * @see ElectricGoldPan#isOutputLimitOverridden()
*/ */
@Deprecated @Deprecated(since = "RC-36")
public boolean isOutputLimitOverriden() { public boolean isOutputLimitOverriden() {
return isOutputLimitOverridden(); return isOutputLimitOverridden();
} }

View File

@ -63,13 +63,11 @@ public class GoldPan extends SimpleSlimefunItem<ItemUseHandler> implements Recip
} }
/** /**
* @deprecated * @deprecated since RC-36
* *
* This method returns the old {@link Material} that this {@link GoldPan} accepted * @see GoldPan#getInputMaterials()
*
* @return The old {@link Material} this {@link GoldPan} could be used on
*/ */
@Deprecated @Deprecated(since = "RC-36")
public Material getInputMaterial() { public Material getInputMaterial() {
return Material.GRAVEL; return Material.GRAVEL;
} }

View File

@ -33,7 +33,7 @@ public class NetherGoldPan extends GoldPan {
} }
@Override @Override
@Deprecated @Deprecated(since = "RC-36")
public Material getInputMaterial() { public Material getInputMaterial() {
return Material.SOUL_SAND; return Material.SOUL_SAND;
} }