Introduction
The java linetransformationoutputstream example is extracted from the most popular open source projects, you can refer to the following example for usage.
Programming language: Java
Namespace/package name: hudson.console
Example#1File:
MsBuildConsoleParser.javaProject:
chantakeda/msbuild-plugin
@Override
public void close() throws IOException {
super.close();
out.close();
}
Example#2File:
TimestamperBuildWrapper.javaProject:
rambegaokar/timestamper-plugin
/** {@inheritDoc} */
@Override
public void close() throws IOException {
super.close();
delegate.close();
}