Browse Source

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 years ago
parent
commit
f80874bef2

+ 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 {