com.github.azbh111.utils.java.io.stream.NoopOutputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.io.stream;
import java.io.IOException;
import java.io.OutputStream;
/**
* @author: zyp
* @date: 2020/6/6 4:30 下午
*/
public class NoopOutputStream extends OutputStream {
@Override
public void write(int b) throws IOException {
// do nothing
}
@Override
public void flush() throws IOException {
}
@Override
public void close() throws IOException {
}
}