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

Jagadesh Kiran N updated HDFS-11262:
------------------------------------
    Attachment: HDFS-11262_02.patch

Updated the patch,please review

> Remove unused variable in FSImage.java
> --------------------------------------
>
>                 Key: HDFS-11262
>                 URL: https://issues.apache.org/jira/browse/HDFS-11262
>             Project: Hadoop HDFS
>          Issue Type: Improvement
>            Reporter: Akira Ajisaka
>            Assignee: Jagadesh Kiran N
>            Priority: Trivial
>              Labels: newbie
>         Attachments: HDFS-11262_00.patch, HDFS-11262_01.patch, 
> HDFS-11262_02.patch
>
>
> {code:title=FSImage.java}
>     Exception le = null;
>     FSImageFile imageFile = null;
>     for (int i = 0; i < imageFiles.size(); i++) {
>       try {
>         imageFile = imageFiles.get(i);
>         loadFSImageFile(target, recovery, imageFile, startOpt);
>         break;
>       } catch (IllegalReservedPathException ie) {
>         throw new IOException("Failed to load image from " + imageFile,
>             ie);
>       } catch (Exception e) {
>         le = e;
>         LOG.error("Failed to load image from " + imageFile, e);
>         target.clear();
>         imageFile = null;
>       }
>     }
> {code}
> Exception {{le}} is not used. It can be removed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to