You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by an...@apache.org on 2014/06/27 19:02:04 UTC

git commit: HBASE-11421 HTableInterface javadoc correction. (Anoop)

Repository: hbase
Updated Branches:
  refs/heads/master 22575c9a7 -> cac468f33


HBASE-11421 HTableInterface javadoc correction. (Anoop)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/cac468f3
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/cac468f3
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/cac468f3

Branch: refs/heads/master
Commit: cac468f33fb0f490f47e4d78773c7bee624f10c6
Parents: 22575c9
Author: anoopsjohn <an...@gmail.com>
Authored: Fri Jun 27 22:31:20 2014 +0530
Committer: anoopsjohn <an...@gmail.com>
Committed: Fri Jun 27 22:31:20 2014 +0530

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/client/HTableInterface.java     | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/cac468f3/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
index e5a8031..c02fcee 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
@@ -108,25 +108,26 @@ public interface HTableInterface extends Closeable {
   Boolean[] exists(List<Get> gets) throws IOException;
 
   /**
-   * Method that does a batch call on Deletes, Gets, Puts, Increments, Appends and RowMutations.
+   * Method that does a batch call on Deletes, Gets, Puts, Increments and Appends.
    * The ordering of execution of the actions is not defined. Meaning if you do a Put and a
    * Get in the same {@link #batch} call, you will not necessarily be
    * guaranteed that the Get returns what the Put had put.
    *
-   * @param actions list of Get, Put, Delete, Increment, Append, RowMutations objects
+   * @param actions list of Get, Put, Delete, Increment, Append objects
    * @param results Empty Object[], same size as actions. Provides access to partial
    *                results, in case an exception is thrown. A null in the result array means that
    *                the call for that action failed, even after retries
    * @throws IOException
    * @since 0.90.0
    */
-  void batch(final List<?extends Row> actions, final Object[] results) throws IOException, InterruptedException;
+  void batch(final List<? extends Row> actions, final Object[] results) throws IOException,
+      InterruptedException;
 
   /**
    * Same as {@link #batch(List, Object[])}, but returns an array of
    * results instead of using a results parameter reference.
    *
-   * @param actions list of Get, Put, Delete, Increment, Append, RowMutations objects
+   * @param actions list of Get, Put, Delete, Increment, Append objects
    * @return the results from the actions. A null in the return array means that
    *         the call for that action failed, even after retries
    * @throws IOException