We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98a35e1 commit 51c905bCopy full SHA for 51c905b
src/main/kotlin/org/hydev/logger/utils/HyPrintStream.kt
@@ -44,5 +44,5 @@ class HyPrintStream(val original: PrintStream, val log: (Any) -> Unit)
44
override fun println(x: Double) = log(x)
45
override fun println(x: CharArray) = log(x)
46
override fun println(x: String?) = log(x ?: "null")
47
- override fun println(x: Any) = log(x)
+ override fun println(x: Any?) = log(x ?: "null")
48
}
0 commit comments