in src/main/java/org/apache/commons/exec/DefaultExecutor.java [301:323]
private void closeProcessStreams(final Process process) {
try {
process.getInputStream().close();
}
catch (final IOException e) {
setExceptionCaught(e);
}
try {
process.getOutputStream().close();
}
catch (final IOException e) {
setExceptionCaught(e);
}
try {
process.getErrorStream().close();
}
catch (final IOException e) {
setExceptionCaught(e);
}
}