diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestHCM.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestHCM.java index 64bde1d8d9f3..9ed5be6d0666 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestHCM.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestHCM.java @@ -69,7 +69,6 @@ import org.apache.hadoop.hbase.util.JVMClusterUtil; import org.apache.hadoop.hbase.util.ManualEnvironmentEdge; import org.apache.hadoop.hbase.util.Threads; -import org.jboss.netty.util.internal.DetectionUtil; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; @@ -101,8 +100,6 @@ public class TestHCM { private static final byte[] ROW_X = Bytes.toBytes("xxx"); private static Random _randy = new Random(); - private static boolean isJavaOk = DetectionUtil.javaVersion() > 6; - /** * This copro sleeps 20 second. The first call it fails. The second time, it works. */ @@ -124,11 +121,7 @@ public void preGetOp(final ObserverContext e, @BeforeClass public static void setUpBeforeClass() throws Exception { - TEST_UTIL.getConfiguration().setBoolean(HConstants.STATUS_PUBLISHED, - HConstants.STATUS_PUBLISHED_DEFAULT); - if (isJavaOk) { - TEST_UTIL.getConfiguration().setBoolean(HConstants.STATUS_PUBLISHED, true); - } + TEST_UTIL.getConfiguration().setBoolean(HConstants.STATUS_PUBLISHED, true); TEST_UTIL.startMiniCluster(2); } @@ -211,10 +204,6 @@ public void testAdminFactory() throws IOException { // Fails too often! Needs work. HBASE-12558 @Ignore @Test(expected = RegionServerStoppedException.class) public void testClusterStatus() throws Exception { - if (!isJavaOk){ - // This test requires jdk 1.7+ - throw new RegionServerStoppedException("as expected by the test..."); - } TableName tn = TableName.valueOf("testClusterStatus"); @@ -467,10 +456,6 @@ public void testConnectionIdle() throws Exception { */ @Test public void testConnectionCut() throws Exception { - if (!isJavaOk){ - // This test requires jdk 1.7+ - return; - } TableName tableName = TableName.valueOf("HCM-testConnectionCut");