Fix Javadoc generation warnings and errors
Some checks failed
build-and-test / test (push) Failing after 53s
build-and-test / build (push) Successful in 1m10s
build-and-test / generate-javadoc (push) Successful in 1m19s

This commit is contained in:
JeremyStar™ 2024-08-31 22:35:02 +02:00
parent 2529898e19
commit dedcdad002
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
2 changed files with 3 additions and 2 deletions

View file

@ -209,6 +209,7 @@ public final class Miscellaneous {
/** /**
* Returns the {@code Caused by} message usually found when the JVM prints a throwable. * Returns the {@code Caused by} message usually found when the JVM prints a throwable.
* *
* @param throwable {@link Throwable} to use
* @return stack trace header * @return stack trace header
* @since v1-alpha4 * @since v1-alpha4
*/ */

View file

@ -537,7 +537,7 @@ public abstract class Window implements AutoCloseable {
* Do not call this method manually or you * Do not call this method manually or you
* may cause unintended side effects. * may cause unintended side effects.
* *
* @throws Throwable thrown by implementing method * @throws Exception thrown by implementing method
* @since v1-alpha2 * @since v1-alpha2
*/ */
public abstract void updateState() throws Exception; public abstract void updateState() throws Exception;
@ -548,7 +548,7 @@ public abstract class Window implements AutoCloseable {
* Do not call this method manually or you * Do not call this method manually or you
* may cause unintended side effects. * may cause unintended side effects.
* *
* @throws Throwable thrown by implementing method * @throws Exception thrown by implementing method
* @since v1-alpha2 * @since v1-alpha2
*/ */
public abstract void render() throws Exception; public abstract void render() throws Exception;