Remove outdated Javadoc

This commit is contained in:
filoghost 2021-08-08 15:55:22 +02:00
parent 7fb38d82e4
commit 176187e0c9
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ public interface Hologram {
@NotNull HologramLine getLine(int index);
/**
* Removes a line at a given index. Since: v2.0.1
* Removes a line at a given index.
*
* @param index the index of the line, that should be between 0 and size() - 1.
* @throws IndexOutOfBoundsException if the index is out of range (index < 0 || index >= size())
@ -96,7 +96,7 @@ public interface Hologram {
int getLineCount();
/**
* The physical height of the hologram, counting all the lines. Since: v2.1.4
* The physical height of the hologram, counting all the lines.
*
* @return the height of the hologram, counting all the lines and the gaps between them
* @since 1

View File

@ -23,7 +23,7 @@ public interface HologramLine {
@NotNull Hologram getParent();
/**
* Removes this line from the parent Hologram. Since: v2.0.1
* Removes this line from the parent Hologram.
* Do not call if the Hologram has been deleted, an exception will be thrown.
*
* @since 1