Browse Source

Merged HADOOP-4242 (svn revision 698176) to 0.19 since
HADOOP-4006 is merged to 0.19. Original log:
HADOOP-4242. Fix CHANGES.txt to move 4242 to trunk, since the problem is not in
0.19.


git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/branches/branch-0.19@698380 13f79535-47bb-0310-9956-ffa450edef68

Raghu Angadi 17 years ago
parent
commit
af1c2e4570
2 changed files with 4 additions and 1 deletions
  1. 3 0
      CHANGES.txt
  2. 1 1
      src/hdfs/org/apache/hadoop/hdfs/server/namenode/FSDirectory.java

+ 3 - 0
CHANGES.txt

@@ -718,6 +718,9 @@ Release 0.19.0 - Unreleased
     HADOOP-4090. The hive scripts pick up hadoop from HADOOP_HOME
     and then the path. (Raghotham Murthy via dhruba)
 
+    HADOOP-4242. Remove extra ";" in FSDirectory that blocks compilation
+    in some IDE's. (szetszwo via omalley)
+
 Release 0.18.1 - 2008-09-17
 
   IMPROVEMENTS

+ 1 - 1
src/hdfs/org/apache/hadoop/hdfs/server/namenode/FSDirectory.java

@@ -31,7 +31,7 @@ import org.apache.hadoop.metrics.MetricsContext;
 import org.apache.hadoop.hdfs.protocol.FSConstants;
 import org.apache.hadoop.hdfs.protocol.Block;
 import org.apache.hadoop.hdfs.protocol.QuotaExceededException;
-import org.apache.hadoop.hdfs.server.common.HdfsConstants.StartupOption;;
+import org.apache.hadoop.hdfs.server.common.HdfsConstants.StartupOption;
 import org.apache.hadoop.hdfs.server.namenode.BlocksMap.BlockInfo;
 
 /*************************************************