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

com.yahoo.log.UncloseableOutputStream Maven / Gradle / Ivy

There is a newer version: 8.442.54
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.log;

import java.io.IOException;
import java.io.OutputStream;

/**
 * @author Simon Thoresen Hult
 * @since 5.1.14
 * Should only be used internally in the log library
 */
class UncloseableOutputStream extends OutputStream {

    private final OutputStream out;

    public UncloseableOutputStream(OutputStream out) {
        this.out = out;
    }

    @Override
    public void write(int b) throws IOException {
        out.write(b);
    }

    @Override
    public void close() {
        // ignore
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy