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

fm.common.UncloseableInputStream.scala Maven / Gradle / Ivy

package fm.common

import java.io.{FilterInputStream, InputStream}

object UncloseableInputStream {
  def apply(in: InputStream): UncloseableInputStream = new UncloseableInputStream(in)
}

/**
 * Wraps an InputStream and makes the close() method do nothing
 */
final class UncloseableInputStream(in: InputStream) extends FilterInputStream(in) {
  override def close(): Unit = { }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy