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

cucumber.runtime.arquillian.stream.NotCloseablePrintStream Maven / Gradle / Ivy

There is a newer version: 1.6.7
Show newest version
package cucumber.runtime.arquillian.stream;

import java.io.PrintStream;

public class NotCloseablePrintStream extends PrintStream {
    public NotCloseablePrintStream(final PrintStream originalOut) {
        super(originalOut);
    }

    @Override
    public void close() {
        flush();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy