io.gitlab.arturbosch.detekt.test.NullOutputStream.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of detekt-test Show documentation
Show all versions of detekt-test Show documentation
Static code analysis for Kotlin
package io.gitlab.arturbosch.detekt.test
import java.io.OutputStream
internal class NullOutputStream : OutputStream() {
override fun write(b: Int) {
// no-op
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy