Skip to content

Commit

Permalink
Merge pull request #17292 from igfoo/igfoo/open
Browse files Browse the repository at this point in the history
Kotlin: Remove a redundant 'open'
  • Loading branch information
igfoo authored Aug 27, 2024
2 parents 085bf2f + 7d500cf commit 3a864d3
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 3a864d3

Please sign in to comment.