Rename TwoCycleFormatterBase -> TwoCycleFormatterImpl
This commit is contained in:
parent
da0040fb02
commit
92b36f30e2
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ package de.staropensource.engine.logging.implementation
|
||||||
import de.staropensource.engine.logging.type.TwoCycleFormatter
|
import de.staropensource.engine.logging.type.TwoCycleFormatter
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A [TwoCycleFormatterBase] implementation providing
|
* A [TwoCycleFormatter] implementation providing
|
||||||
* a fully functioning and compliant implementation
|
* a fully functioning and compliant implementation
|
||||||
* of the [parse] method.
|
* of the [parse] method.
|
||||||
*
|
*
|
||||||
|
@ -43,7 +43,7 @@ import de.staropensource.engine.logging.type.TwoCycleFormatter
|
||||||
* @see de.staropensource.engine.logging.type.Formatter
|
* @see de.staropensource.engine.logging.type.Formatter
|
||||||
* @since v1-alpha10
|
* @since v1-alpha10
|
||||||
*/
|
*/
|
||||||
abstract class TwoCycleFormatterBase: TwoCycleFormatter() {
|
abstract class TwoCycleFormatterImpl: TwoCycleFormatter() {
|
||||||
@Suppress("NestedBlockDepth")
|
@Suppress("NestedBlockDepth")
|
||||||
override fun parse(message: String): Array<String> {
|
override fun parse(message: String): Array<String> {
|
||||||
val components: MutableList<String> = mutableListOf()
|
val components: MutableList<String> = mutableListOf()
|
Loading…
Reference in a new issue