Skip to content

Commit

Permalink
Fix JavaDoc error
Browse files Browse the repository at this point in the history
  • Loading branch information
md-5 committed Jul 27, 2024
1 parent b3c2b83 commit d5d0cef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/bukkit/inventory/AnvilInventory.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public interface AnvilInventory extends Inventory {
* Get the item cost (in amount) to complete the current repair.
*
* @return the amount
* @deprecated use {@link AnvilView#getRepairItemCost()}.
* @deprecated use {@link AnvilView#getRepairCost()}.
*/
@Deprecated(forRemoval = true, since = "1.21")
int getRepairCostAmount();
Expand All @@ -32,7 +32,7 @@ public interface AnvilInventory extends Inventory {
* Set the item cost (in amount) to complete the current repair.
*
* @param amount the amount
* @deprecated use {@link AnvilView#setRepairItemCost(int)}.
* @deprecated use {@link AnvilView#setRepairCost(int)}.
*/
@Deprecated(forRemoval = true, since = "1.21")
void setRepairCostAmount(int amount);
Expand Down

0 comments on commit d5d0cef

Please sign in to comment.