Update annotations and fix javadoc warnings

This commit is contained in:
JeremyStar™ 2024-06-08 17:10:20 +02:00
parent 7f2eebd595
commit fe632d9287
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
5 changed files with 5 additions and 4 deletions

View file

@ -35,6 +35,7 @@ import org.jetbrains.annotations.NotNull;
* @see LoggerImpl
* @since 1-alpha0
*/
@SuppressWarnings("resource")
public class DefaultLoggerImpl implements LoggerImpl {
/**
* Constructor.

View file

@ -41,7 +41,7 @@ import java.util.List;
* @see LogIssuer
* @see LogLevel
*/
@SuppressWarnings({ "unused", "JavadocDeclaration" })
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
public class Logger {
/**
* Refers to the active {@link LoggerImpl} that is used to process and print log messages.

View file

@ -24,7 +24,7 @@ import de.staropensource.sosengine.base.utility.BuildInfo;
/**
* Provides all available version types.
*
* @see BuildInfo#getVersioningType()
* @see BuildInfo#versioningType
* @since 1-alpha0
*/
@SuppressWarnings({ "unused" })

View file

@ -32,7 +32,7 @@ import java.util.Properties;
* @see Properties
* @since 1-alpha0
*/
@SuppressWarnings({ "unused", "JavadocDeclaration" })
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@NotNull
public final class PropertyParser {
/**

View file

@ -81,7 +81,7 @@ public class ShortcodeConverter {
* @param text the text to process
* @param noErrors prevents printing tag/shortcode errors, overrides the engine configuration setting
* @return {@link Ansi} sequence
* @see EngineConfiguration#isErrorShortcodeConverter()
* @see EngineConfiguration#errorShortcodeConverter
* @since 1-alpha0
*/
@NotNull