Skip to content

Commit

Permalink
0001888: Improve stagedresource. By definition a resource can only ha…
Browse files Browse the repository at this point in the history
…ve one writer. Changed StagedResource.java to only allow one writer.
  • Loading branch information
chenson42 committed Aug 7, 2014
1 parent e6916b8 commit 2b0537f
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -197,10 +197,12 @@ public void close() {

if (writer != null) {
IOUtils.closeQuietly(writer);
writer = null;
}

if (outputStream != null) {
IOUtils.closeQuietly(outputStream);
outputStream = null;
}

if (inputStreams != null) {
Expand Down

0 comments on commit 2b0537f

Please sign in to comment.