Skip to content

Commit

Permalink
Kotlin: Remove a redundant 'open'
Browse files Browse the repository at this point in the history
  • Loading branch information
igfoo committed Aug 23, 2024
1 parent 67d9437 commit 7d500cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/kotlin-extractor/src/main/kotlin/utils/Logger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ open class LoggerBase(val logCounter: LogCounter) {
}
}

open class Logger(val loggerBase: LoggerBase, open val dtw: DiagnosticTrapWriter) {
open class Logger(val loggerBase: LoggerBase, val dtw: DiagnosticTrapWriter) {
fun flush() {
dtw.flush()
loggerBase.flush()
Expand Down

0 comments on commit 7d500cf

Please sign in to comment.