Rename TwoCycleFormatterBase -> TwoCycleFormatterImpl
All checks were successful
PRs & Pushes / build (push) Successful in 3m20s
PRs & Pushes / build-apidoc (push) Successful in 3m49s

This commit is contained in:
JeremyStar™ 2024-12-13 18:31:51 +01:00
parent da0040fb02
commit 92b36f30e2
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -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<String> {
val components: MutableList<String> = mutableListOf()