All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hp.jipp.pdl.util.NullOutputStream.kt Maven / Gradle / Ivy

The newest version!
// Copyright 2018 - 2020 HP Development Company, L.P.
// SPDX-License-Identifier: MIT

package com.hp.jipp.pdl.util

import java.io.OutputStream

/** An output stream that writes data to nowhere. */
object NullOutputStream : OutputStream() {
    @Suppress("EmptyFunctionBlock")
    override fun write(dummy: Int) { }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy