[
https://issues.apache.org/jira/browse/HADOOP-10365?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14255554#comment-14255554
]
Tsuyoshi OZAWA commented on HADOOP-10365:
-----------------------------------------
[~yunsh] Sorry for iterative comments - how about using try-with-resources
since we only support JDK7+ now. Do you mind updating it?
http://docs.oracle.com/javase/7/docs/technotes/guides/language/try-with-resources.html
> BufferedOutputStream in FileUtil#unpackEntries() should be closed in finally
> block
> ----------------------------------------------------------------------------------
>
> Key: HADOOP-10365
> URL: https://issues.apache.org/jira/browse/HADOOP-10365
> Project: Hadoop Common
> Issue Type: Bug
> Components: util
> Reporter: Ted Yu
> Priority: Minor
> Attachments: HADOOP-10365.2.patch, HADOOP-10365.3.patch,
> HADOOP-10365.4.patch, HADOOP-10365.patch
>
>
> {code}
> BufferedOutputStream outputStream = new BufferedOutputStream(
> new FileOutputStream(outputFile));
> ...
> outputStream.flush();
> outputStream.close();
> {code}
> outputStream should be closed in finally block.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)