Skip to content

Commit 1743224

Browse files
committed
refactor: wrong nullability
1 parent 6bbcf9c commit 1743224

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/integration/CLIIntegrationTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ abstract class CLIIntegrationTest {
4545
class Interceptor(out: OutputStream) : PrintStream(out, true) {
4646
val output = StringBuilder()
4747

48-
override fun print(s: String) {
48+
override fun print(s: String?) {
4949
output.append(s)
5050
}
5151

0 commit comments

Comments
 (0)