Repository: hbase Updated Branches: refs/heads/branch-1.1 1c92d02b0 -> f87a30b9d
Revert "Label the new methods on Table introduced by HBASE-15645 as InterfaceAudience.Private" This reverts commit 6b54917d520d32d00f5b4e9420e0d4894aaa34e8. bad commit message Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2e63f882 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2e63f882 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2e63f882 Branch: refs/heads/branch-1.1 Commit: 2e63f882c85fb5804aafff5d92503eca60c0820d Parents: 1c92d02 Author: Sean Busbey <[email protected]> Authored: Fri Apr 29 08:40:50 2016 -0500 Committer: Sean Busbey <[email protected]> Committed: Fri Apr 29 08:40:50 2016 -0500 ---------------------------------------------------------------------- .../src/main/java/org/apache/hadoop/hbase/client/Table.java | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/2e63f882/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java index ee742b2..8c6169d 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java @@ -606,13 +606,11 @@ public interface Table extends Closeable { * early and throw SocketTimeoutException. * @param operationTimeout the total timeout of each operation in millisecond. */ - @InterfaceAudience.Private public void setOperationTimeout(int operationTimeout); /** * Get timeout (millisecond) of each operation for in Table instance. */ - @InterfaceAudience.Private public int getOperationTimeout(); /** @@ -622,12 +620,10 @@ public interface Table extends Closeable { * retries exhausted or operation timeout reached. * @param rpcTimeout the timeout of each rpc request in millisecond. */ - @InterfaceAudience.Private public void setRpcTimeout(int rpcTimeout); /** * Get timeout (millisecond) of each rpc request in this Table instance. */ - @InterfaceAudience.Private public int getRpcTimeout(); }
