aQute.lib.io.NonClosingReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bnd.runtime.snapshot Show documentation
Show all versions of biz.aQute.bnd.runtime.snapshot Show documentation
biz.aQute.bnd.runtime.snapshot
The newest version!
package aQute.lib.io;
import java.io.FilterReader;
import java.io.Reader;
public class NonClosingReader extends FilterReader {
public NonClosingReader(Reader in) {
super(in);
}
@Override
public void close() {
// leave the underlying Reader open
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy