diff --git a/java/kudu-client/src/main/java/org/apache/kudu/client/AsyncKuduClient.java b/java/kudu-client/src/main/java/org/apache/kudu/client/AsyncKuduClient.java index 668f2387d1..74beb9eab8 100644 --- a/java/kudu-client/src/main/java/org/apache/kudu/client/AsyncKuduClient.java +++ b/java/kudu-client/src/main/java/org/apache/kudu/client/AsyncKuduClient.java @@ -853,7 +853,7 @@ public Deferred call(ListTablesResponse listTablesResponse) throws Exce * after opening the table. * * @param name table to open - * @return a KuduTable if the table exists, else a MasterErrorException + * @return a deferred KuduTable */ public Deferred openTable(String name) { checkIsClosed(); @@ -1824,7 +1824,7 @@ public Master.GetTableLocationsResponsePB call(ConnectToClusterResponse resp) { * @param deadline deadline in milliseconds for this method to finish * @return a list of the tablets in the table, which can be queried for metadata about * each tablet - * @throws Exception MasterErrorException if the table doesn't exist + * @throws Exception if anything went wrong */ List syncLocateTable(KuduTable table, byte[] startPartitionKey,