Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-28409] - Properly closed parent streams in EnvInjectPa…
…sswordsOutputStream
  • Loading branch information
oleg-nenashev committed May 14, 2015
1 parent 7c69760 commit 561f243
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -198,6 +198,12 @@ protected void eol(byte[] bytes, int len) throws IOException {
}
logger.write(line.getBytes());
}

@Override
public void close() throws IOException {
super.close();
logger.close();
}
}

@Override
Expand Down

0 comments on commit 561f243

Please sign in to comment.