Update Maven plugins

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2021-07-03 11:06:15 +10:00
parent 34e6b033ad
commit 6dd24e4af2
25 changed files with 98 additions and 102 deletions

View File

@@ -27,18 +27,16 @@ public interface Lectern extends TileState, BlockInventoryHolder {
void setPage(int page);
/**
* @see Container#getInventory()
*
* @return inventory
* @see Container#getInventory()
*/
@NotNull
@Override
Inventory getInventory();
/**
* @see Container#getSnapshotInventory()
*
* @return snapshot inventory
* @see Container#getSnapshotInventory()
*/
@NotNull
Inventory getSnapshotInventory();

View File

@@ -22,8 +22,8 @@ public interface Sign extends TileState, Colorable {
* For example, getLine(0) will return the first line of text.
*
* @param index Line number to get the text from, starting at 0
* @throws IndexOutOfBoundsException Thrown when the line does not exist
* @return Text on the given line
* @throws IndexOutOfBoundsException Thrown when the line does not exist
*/
@NotNull
public String getLine(int index) throws IndexOutOfBoundsException;