[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-4037?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ling Mao reassigned ZOOKEEPER-4037:
-----------------------------------

    Assignee: Ling Mao

> Closing autoCloseable resource with try-with-resources block
> ------------------------------------------------------------
>
>                 Key: ZOOKEEPER-4037
>                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-4037
>             Project: ZooKeeper
>          Issue Type: Improvement
>            Reporter: LiAoNan
>            Assignee: Ling Mao
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Using
> {code:java}
>             try (FileInputStream in = new FileInputStream(configFile)) {
>                 ...
>                 configFileStr = path;
>             }
> {code}
> replace
> {code:java}
>             FileInputStream in = new FileInputStream(configFile);
>             try {
>                 ...
>             } finally {
>                 in.close();
>             }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to