core/src/main/java/hudson/util/DualOutputStream.java [36:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.lhs = lhs;
        this.rhs = rhs;
    }

    public void write(int b) throws IOException {
        lhs.write(b);
        rhs.write(b);
    }

    @Override
    public void write(byte[] b) throws IOException {
        lhs.write(b);
        rhs.write(b);
    }

    @Override
    public void write(byte[] b, int off, int len) throws IOException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/src/main/java/hudson/util/ForkOutputStream.java [37:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.lhs = lhs;
        this.rhs = rhs;
    }

    public void write(int b) throws IOException {
        lhs.write(b);
        rhs.write(b);
    }

    @Override
    public void write(byte[] b) throws IOException {
        lhs.write(b);
        rhs.write(b);
    }

    @Override
    public void write(byte[] b, int off, int len) throws IOException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



