From 2307972bc9fc7682499b12d3e9e3cdf33cc26d62 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 12 May 2019 12:10:43 +0800 Subject: Fix doc --- src/main/java/me/shedaniel/rei/api/ClientHelper.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/ClientHelper.java') diff --git a/src/main/java/me/shedaniel/rei/api/ClientHelper.java b/src/main/java/me/shedaniel/rei/api/ClientHelper.java index e0fbfbed3..fe33ddc64 100644 --- a/src/main/java/me/shedaniel/rei/api/ClientHelper.java +++ b/src/main/java/me/shedaniel/rei/api/ClientHelper.java @@ -81,22 +81,20 @@ public interface ClientHelper { /** * Gets the mod from an item * - * @param item + * @param item the item to find * @return the mod name */ String getModFromItem(Item item); /** * Tries to delete the player's cursor item - * - * @return whether it failed */ void sendDeletePacket(); /** * Gets the formatted mod from an item * - * @param item + * @param item the item to find * @return the mod name with blue and italic formatting */ String getFormattedModFromItem(Item item); @@ -104,7 +102,7 @@ public interface ClientHelper { /** * Gets the formatted mod from an identifier * - * @param identifier + * @param identifier the identifier to find * @return the mod name with blue and italic formatting */ String getFormattedModFromIdentifier(Identifier identifier); @@ -112,7 +110,7 @@ public interface ClientHelper { /** * Gets the mod from an identifier * - * @param identifier + * @param identifier the identifier to find * @return the mod name */ String getModFromIdentifier(Identifier identifier); -- cgit