From 076030550f14bbe03cc1a78fc54377b55e14f277 Mon Sep 17 00:00:00 2001 From: Zhihong Yu Date: Thu, 10 Nov 2011 04:18:42 +0000 Subject: [PATCH] HBASE-4737 Addendum removes unnecessary print git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1200138 13f79535-47bb-0310-9956-ffa450edef68 --- .../hadoop/hbase/regionserver/TestSplitTransaction.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransaction.java b/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransaction.java index 6bcd2347479..8bf9081cb34 100644 --- a/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransaction.java +++ b/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransaction.java @@ -61,21 +61,14 @@ public class TestSplitTransaction { private static final byte [] GOOD_SPLIT_ROW = new byte [] {'d', 'd', 'd'}; private static final byte [] CF = HConstants.CATALOG_FAMILY; - static { - System.out.println("AAAA static"); - } - @Before public void setup() throws IOException { - System.out.println("AAAA setup"); this.fs = FileSystem.get(TEST_UTIL.getConfiguration()); this.fs.delete(this.testdir, true); this.wal = new HLog(fs, new Path(this.testdir, "logs"), new Path(this.testdir, "archive"), TEST_UTIL.getConfiguration()); - System.out.println("AAAA setup createRegion"); this.parent = createRegion(this.testdir, this.wal); TEST_UTIL.getConfiguration().setBoolean("hbase.testing.nocluster", true); - System.out.println("AAAA setup ends"); } @After public void teardown() throws IOException { @@ -89,7 +82,6 @@ public class TestSplitTransaction { } @Test public void testFailAfterPONR() throws IOException, KeeperException { - System.out.println("AAAA testFailAfterPONR"); final int rowcount = TEST_UTIL.loadRegion(this.parent, CF); assertTrue(rowcount > 0); int parentRowCount = countRows(this.parent);