Skip to content

Commit 7d500cf

Browse files
committed
Kotlin: Remove a redundant 'open'
1 parent 67d9437 commit 7d500cf

File tree

1 file changed

+1
-1
lines changed
  • java/kotlin-extractor/src/main/kotlin/utils

1 file changed

+1
-1
lines changed

java/kotlin-extractor/src/main/kotlin/utils/Logger.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ open class LoggerBase(val logCounter: LogCounter) {
279279
}
280280
}
281281

282-
open class Logger(val loggerBase: LoggerBase, open val dtw: DiagnosticTrapWriter) {
282+
open class Logger(val loggerBase: LoggerBase, val dtw: DiagnosticTrapWriter) {
283283
fun flush() {
284284
dtw.flush()
285285
loggerBase.flush()

0 commit comments

Comments
 (0)