diff --git a/logging/src/main/kotlin/de/staropensource/engine/logging/implementation/TwoCycleFormatterBase.kt b/logging/src/main/kotlin/de/staropensource/engine/logging/implementation/TwoCycleFormatterImpl.kt similarity index 96% rename from logging/src/main/kotlin/de/staropensource/engine/logging/implementation/TwoCycleFormatterBase.kt rename to logging/src/main/kotlin/de/staropensource/engine/logging/implementation/TwoCycleFormatterImpl.kt index cf306e4..015b746 100644 --- a/logging/src/main/kotlin/de/staropensource/engine/logging/implementation/TwoCycleFormatterBase.kt +++ b/logging/src/main/kotlin/de/staropensource/engine/logging/implementation/TwoCycleFormatterImpl.kt @@ -23,7 +23,7 @@ package de.staropensource.engine.logging.implementation import de.staropensource.engine.logging.type.TwoCycleFormatter /** - * A [TwoCycleFormatterBase] implementation providing + * A [TwoCycleFormatter] implementation providing * a fully functioning and compliant implementation * of the [parse] method. * @@ -43,7 +43,7 @@ import de.staropensource.engine.logging.type.TwoCycleFormatter * @see de.staropensource.engine.logging.type.Formatter * @since v1-alpha10 */ -abstract class TwoCycleFormatterBase: TwoCycleFormatter() { +abstract class TwoCycleFormatterImpl: TwoCycleFormatter() { @Suppress("NestedBlockDepth") override fun parse(message: String): Array { val components: MutableList = mutableListOf()