Update EngineConfiguration ShortcodeConverter refs

This commit is contained in:
JeremyStar™ 2024-07-08 11:29:40 +02:00
parent d35ae5535c
commit 000a7d3aca
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -26,7 +26,7 @@ import de.staropensource.sosengine.base.logging.CrashHandler;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.sosengine.base.logging.Logger;
import de.staropensource.sosengine.base.types.CodePart; import de.staropensource.sosengine.base.types.CodePart;
import de.staropensource.sosengine.base.utility.PropertyParser; import de.staropensource.sosengine.base.utility.PropertyParser;
import de.staropensource.sosengine.base.utility.ShortcodeConverter; import de.staropensource.sosengine.base.utility.converter.AnsiShortcodeConverter;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
@ -111,10 +111,10 @@ public final class EngineConfiguration implements SubsystemConfiguration {
private boolean debugEvents; private boolean debugEvents;
/** /**
* If enabled, very verbose messages about the {@link ShortcodeConverter}'s internals will be printed.<br/> * If enabled, very verbose messages about the {@link AnsiShortcodeConverter}'s internals will be printed.<br/>
* Don't enable unless you want to work on it. * Don't enable unless you want to work on it.
* *
* @see ShortcodeConverter * @see AnsiShortcodeConverter
* @since 1-alpha0 * @since 1-alpha0
* *
* -- GETTER -- * -- GETTER --
@ -127,10 +127,10 @@ public final class EngineConfiguration implements SubsystemConfiguration {
private boolean debugShortcodeConverter; private boolean debugShortcodeConverter;
/** /**
* If enabled, invalid shortcodes will be logged by the {@link ShortcodeConverter}. * If enabled, invalid shortcodes will be logged by the {@link AnsiShortcodeConverter}.
* The message will be printed as a silent warning. * The message will be printed as a silent warning.
* *
* @see ShortcodeConverter * @see AnsiShortcodeConverter
* @see EngineConfiguration#loggerLevel * @see EngineConfiguration#loggerLevel
* @since 1-alpha0 * @since 1-alpha0
* *