Update javadoc

This commit is contained in:
GeorgH93 2020-10-02 12:36:18 +02:00
parent 2e2801f3a7
commit 205a139655
No known key found for this signature in database
GPG Key ID: D1630D37F9E4B3C8

View File

@ -28,10 +28,10 @@
public interface MinepacksPlugin public interface MinepacksPlugin
{ {
/** /**
* Gets the instance of the minepacks plugin. * Gets the instance of the Minepacks plugin.
* WARNING use this function at your own risk! If the plugin is not installed the MinepacksPlugin class will be unknown! * WARNING use this function at your own risk! If the plugin is not installed the MinepacksPlugin class will be unknown!
* *
* @return The instance of the minepacks plugin. * @return The instance of the Minepacks plugin.
*/ */
static @Nullable MinepacksPlugin getInstance() static @Nullable MinepacksPlugin getInstance()
{ {
@ -132,7 +132,7 @@ public interface MinepacksPlugin
* Checks if an item is a backpack shortcut item. * Checks if an item is a backpack shortcut item.
* *
* @param itemStack item to check. * @param itemStack item to check.
* @return * @return True if the item is a backpack shortcut item.
*/ */
boolean isBackpackItem(final @Nullable ItemStack itemStack); boolean isBackpackItem(final @Nullable ItemStack itemStack);
} }