瀏覽代碼

HDFS-922. Remove unnecessary semicolon added by HDFS-877 that causes
problems for Eclipse compilation.


git-svn-id: https://svn.apache.org/repos/asf/hadoop/hdfs/trunk@903381 13f79535-47bb-0310-9956-ffa450edef68

Jakob Homan 15 年之前
父節點
當前提交
f80874bef2
共有 2 個文件被更改,包括 4 次插入1 次删除
  1. 3 0
      CHANGES.txt
  2. 1 1
      src/test/hdfs/org/apache/hadoop/hdfs/TestClientBlockVerification.java

+ 3 - 0
CHANGES.txt

@@ -105,6 +105,9 @@ Trunk (unreleased changes)
               exclude specific datanodes when locating the next block.
               (Cosmin Lehene via Stack)
 
+    HDFS-922. Remove unnecessary semicolon added by HDFS-877 that causes
+    problems for Eclipse compilation. (jghoman)
+
 Release 0.21.0 - Unreleased
 
   INCOMPATIBLE CHANGES

+ 1 - 1
src/test/hdfs/org/apache/hadoop/hdfs/TestClientBlockVerification.java

@@ -41,7 +41,7 @@ import org.junit.BeforeClass;
 import static org.mockito.Mockito.spy;
 import static org.mockito.Mockito.verify;
 import static org.mockito.Mockito.never;
-;
+
 import static org.junit.Assert.*;
 
 public class TestClientBlockVerification {