Fix Javadoc warnings

This commit is contained in:
JeremyStar™ 2024-09-05 00:39:34 +02:00
parent 21973ffe6c
commit e21ea102c7
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
2 changed files with 10 additions and 3 deletions

View file

@ -19,7 +19,7 @@
package de.staropensource.sosengine.base.internal.type; package de.staropensource.sosengine.base.internal.type;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.sosengine.base.logging.LoggingThread;
import de.staropensource.sosengine.base.type.logging.LogLevel; import de.staropensource.sosengine.base.type.logging.LogLevel;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
@ -32,7 +32,7 @@ import org.jetbrains.annotations.Nullable;
* @param issuerOrigin Origin of the issuer. * @param issuerOrigin Origin of the issuer.
* @param issuerMetadata Metadata about the issuer. * @param issuerMetadata Metadata about the issuer.
* @param message Message of the log call. * @param message Message of the log call.
* @see Logger#startLoggingThread() * @see LoggingThread#startLoggingThread()
* @since v1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })

View file

@ -69,10 +69,17 @@ public class LoggingThread {
/** /**
* Contains a reference to the logging thread. * Contains a reference to the logging thread.
* *
* @since v1-alpha1 * @since v1-alpha4
*/ */
private static Thread loggingThread; private static Thread loggingThread;
/**
* Constructs this class.
*
* @since v1-alpha4
*/
public LoggingThread() {}
/** /**
* Reconstructs the {@link #loggingThread} thread. * Reconstructs the {@link #loggingThread} thread.
* *