diff --git core/src/main/java/org/apache/hadoop/hbase/client/HTable.java core/src/main/java/org/apache/hadoop/hbase/client/HTable.java index 2d0edc1..843ce56 100644 --- core/src/main/java/org/apache/hadoop/hbase/client/HTable.java +++ core/src/main/java/org/apache/hadoop/hbase/client/HTable.java @@ -469,7 +469,7 @@ public class HTable implements HTableInterface { * @throws IOException * @since 0.20.1 */ - public synchronized void delete(final List deletes) + public void delete(final List deletes) throws IOException { int last = 0; try { @@ -487,7 +487,7 @@ public class HTable implements HTableInterface { * @throws IOException * @since 0.20.0 */ - public synchronized void put(final Put put) throws IOException { + public void put(final Put put) throws IOException { doPut(Arrays.asList(put)); } @@ -499,7 +499,7 @@ public class HTable implements HTableInterface { * @throws IOException if a remote or network exception occurs * @since 0.20.0 */ - public synchronized void put(final List puts) throws IOException { + public void put(final List puts) throws IOException { doPut(puts); } @@ -583,7 +583,7 @@ public class HTable implements HTableInterface { * @throws IOException * @return true if the new put was execute, false otherwise */ - public synchronized boolean checkAndPut(final byte [] row, + public boolean checkAndPut(final byte [] row, final byte [] family, final byte [] qualifier, final byte [] value, final Put put) throws IOException {