We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In HologramPage the insertLine(int, HologramLine) method checks whether the index is bigger or equal to the size This should only check for bigger indexes because the index of the size itself appends it to the list https://github.com/DecentSoftware-eu/DecentHolograms/blob/main/src/main/java/eu/decentsoftware/holograms/api/holograms/HologramPage.java#L176
insertLine(int, HologramLine)
The text was updated successfully, but these errors were encountered:
as reference the docs of add(int, Object) https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/List.html#add(int,java.lang.Object)
add(int, Object)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In HologramPage the
insertLine(int, HologramLine)
method checks whether the index is bigger or equal to the sizeThis should only check for bigger indexes because the index of the size itself appends it to the list
https://github.com/DecentSoftware-eu/DecentHolograms/blob/main/src/main/java/eu/decentsoftware/holograms/api/holograms/HologramPage.java#L176
The text was updated successfully, but these errors were encountered: