Repository: hadoop Updated Branches: refs/heads/branch-2.8 07a221e6a -> 1e3304ad2
HDFS-11262. Remove unused variables in FSImage.java. Contributed by Jagadesh Kiran N. (cherry picked from commit d2026ae9e6c86f4fd9e48b80e71233181c1853d9) (cherry picked from commit a95acbcb6e955cf1673f053cb9dab9e5e5dc6803) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/1e3304ad Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/1e3304ad Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/1e3304ad Branch: refs/heads/branch-2.8 Commit: 1e3304ad23e4580564273a7b6d4c694ad6c19a86 Parents: 07a221e Author: Akira Ajisaka <[email protected]> Authored: Tue Dec 20 14:34:35 2016 +0900 Committer: Akira Ajisaka <[email protected]> Committed: Tue Dec 20 14:37:57 2016 +0900 ---------------------------------------------------------------------- .../main/java/org/apache/hadoop/hdfs/server/namenode/FSImage.java | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/1e3304ad/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSImage.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSImage.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSImage.java index 8cd611e..916f6ce 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSImage.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSImage.java @@ -96,7 +96,6 @@ public class FSImage implements Closeable { final private Configuration conf; protected NNStorageRetentionManager archivalManager; - private int quotaInitThreads; /* Used to make sure there are no concurrent checkpoints for a given txid * The checkpoint here could be one of the following operations. @@ -665,7 +664,6 @@ public class FSImage implements Closeable { LOG.info("No edit log streams selected."); } - Exception le = null; FSImageFile imageFile = null; for (int i = 0; i < imageFiles.size(); i++) { try { @@ -676,7 +674,6 @@ public class FSImage implements Closeable { 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; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
