From 92b36f30e209beaf3e53a658e78d7e80a45174b7 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Fri, 13 Dec 2024 18:31:51 +0100 Subject: [PATCH] Rename TwoCycleFormatterBase -> TwoCycleFormatterImpl --- .../{TwoCycleFormatterBase.kt => TwoCycleFormatterImpl.kt} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename logging/src/main/kotlin/de/staropensource/engine/logging/implementation/{TwoCycleFormatterBase.kt => TwoCycleFormatterImpl.kt} (96%) 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()