You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by la...@apache.org on 2012/10/30 19:09:42 UTC

svn commit: r1403808 - /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/HTable.java

Author: larsh
Date: Tue Oct 30 18:09:41 2012
New Revision: 1403808

URL: http://svn.apache.org/viewvc?rev=1403808&view=rev
Log:
    HBASE-7069

Modified:
    hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/HTable.java

Modified: hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/HTable.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/HTable.java?rev=1403808&r1=1403807&r2=1403808&view=diff
==============================================================================
--- hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/HTable.java (original)
+++ hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/HTable.java Tue Oct 30 18:09:41 2012
@@ -688,7 +688,7 @@ public class HTable implements HTableInt
    * {@inheritDoc}
    */
   @Override
-  public synchronized void batch(final List<?extends Row> actions, final Object[] results)
+  public void batch(final List<?extends Row> actions, final Object[] results)
       throws InterruptedException, IOException {
     connection.processBatch(actions, tableName, pool, results);
   }
@@ -697,7 +697,7 @@ public class HTable implements HTableInt
    * {@inheritDoc}
    */
   @Override
-  public synchronized Object[] batch(final List<? extends Row> actions) throws InterruptedException, IOException {
+  public Object[] batch(final List<? extends Row> actions) throws InterruptedException, IOException {
     Object[] results = new Object[actions.size()];
     connection.processBatch(actions, tableName, pool, results);
     return results;