use of com.google.devtools.build.lib.util.io.DelegatingOutErr in project bazel by bazelbuild.
the class BlazeCommandDispatcher method tee.
private OutErr tee(OutErr outErr1, OutErr outErr2) {
DelegatingOutErr outErr = new DelegatingOutErr();
outErr.addSink(outErr1);
outErr.addSink(outErr2);
return outErr;
}
Aggregations