Fixed Javadoc

This commit is contained in:
Natty 2022-04-06 15:29:18 +02:00
parent 6cbd3133e7
commit 0e5c5370b3
No known key found for this signature in database
GPG Key ID: 40AB22FA416C7019
6 changed files with 12 additions and 8 deletions

View File

@ -65,6 +65,10 @@ subprojects {
}
}
tasks.withType<Jar> {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
configure<SigningExtension> {
val signingKey: String? by project
val signingPassword: String? by project

View File

@ -40,8 +40,8 @@ public abstract class PlutoApplication
/**
* A set of values used to create a new {@link PlutoApplication}.
*
* @implNote The values are as follows:
* <table>
* <caption>Configurable options</caption>
* <tr><th><b>Option name</b></th><th><b>Default value</b></th><th><b>Explanation</b></th></tr>
* <tr>
* <td><code>coreProfile</code></td>

View File

@ -7,7 +7,7 @@ import java.util.concurrent.TimeUnit;
* time span {@link String} format and vice versa. Note this action is fully
* reversible at the cost of losing millisecond precision.
*
* <h3>MiniTime format specification:</h3>
* <h2>MiniTime format specification:</h2>
*
* <pre>
* [Nw][Nd][Nh][Nm][Ns]

View File

@ -10,7 +10,7 @@ import javax.annotation.Nonnull;
* These methods are prefixed with "store".
* </em></p>
*
* @implNote Each of the color components is stored separately as a 32-bit integer
* Each of the color components is stored separately as a 32-bit integer
* to avoid unnecessary type conversion at the cost of some memory.
*
* <p>
@ -117,12 +117,12 @@ public final class Color
/**
* Converts the supplied float-based {@link IRGBA} color object to a new {@link Color} object and returns it.
*
* Color values are rounded to the nearest integer.
*
* @return A new {@link Color} object
*
* @param colorComponents An {@link IRGBA} color object
*
* @implNote Color values are rounded to the nearest integer.
*
* @since 20.2.0.0-alpha.3
* @author 493msi
*/

View File

@ -12,7 +12,7 @@ import java.lang.annotation.Target;
* </p>
*
* <p>
* Types can opt in to set the {@link ThreadSensitive#localContexts} field to <tt>true</tt>,
* Types can opt in to set the {@link ThreadSensitive#localContexts} field to <code>true</code>,
* committing to support per-thread local contexts.
* </p>
*
@ -25,7 +25,7 @@ import java.lang.annotation.Target;
public @interface ThreadSensitive
{
/**
* When <tt>true</tt>, the annotated type commits to support thread-local contexts.
* When <code>true</code>, the annotated type commits to support thread-local contexts.
*
* @since 20.2.0.0-alpha.2
* */

View File

@ -7,7 +7,7 @@ import java.nio.ByteBuffer;
* A wrapper around a native color buffer for easier handling
* by various APIs, such as OpenGL and GLFW.
*
* @implNote TPNImage is <em>always</em> assumed to be ABGR due to image format
* TPNImage is <em>always</em> assumed to be ABGR due to image format
* limitations of {@link BufferedImage}.
*
* @author 493msi