forked from StarOpenSource/Engine
Update annotations and fix javadoc warnings
This commit is contained in:
parent
7f2eebd595
commit
fe632d9287
5 changed files with 5 additions and 4 deletions
|
@ -35,6 +35,7 @@ import org.jetbrains.annotations.NotNull;
|
|||
* @see LoggerImpl
|
||||
* @since 1-alpha0
|
||||
*/
|
||||
@SuppressWarnings("resource")
|
||||
public class DefaultLoggerImpl implements LoggerImpl {
|
||||
/**
|
||||
* Constructor.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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" })
|
||||
|
|
|
@ -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 {
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue