HBASE-10106: Remove some unnecessary code from TestOpenTableInCoprocessor (Benoit Sigoure)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1550566 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jyates 2013-12-12 22:51:23 +00:00
parent c4ef948ecb
commit a4c3be377f
1 changed files with 0 additions and 2 deletions

View File

@ -69,8 +69,6 @@ public class TestOpenTableInCoprocessor {
public void prePut(final ObserverContext<RegionCoprocessorEnvironment> e, final Put put,
final WALEdit edit, final Durability durability) throws IOException {
HTableInterface table = e.getEnvironment().getTable(otherTable);
Put p = new Put(new byte[] { 'a' });
p.add(family, null, new byte[] { 'a' });
table.put(put);
table.flushCommits();
completed[0] = true;