Skip to content

Commit 2ea31b4

Browse files
Fixing javadoc (#3209)
1 parent c5b558f commit 2ea31b4

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/BigtableDataClient.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ public ApiFuture<Void> bulkMutateRowsAsync(BulkMutation mutation) {
442442
* batch.add("[ROW KEY]", Mutation.create().setCell("[FAMILY NAME]", "[QUALIFIER]", "[VALUE]");
443443
* }
444444
* bigtableClient.bulkMutateRowsCallable().call(batch);
445+
* }
445446
* }</pre>
446447
*/
447448
public UnaryCallable<BulkMutation, Void> bulkMutationCallable() {
@@ -464,6 +465,7 @@ public UnaryCallable<BulkMutation, Void> bulkMutationCallable() {
464465
* );
465466
*
466467
* ApiFuture<Boolean> future = bigtableClient.checkAndMutateRowAsync(mutation);
468+
* }
467469
* }</pre>
468470
*/
469471
public ApiFuture<Boolean> checkAndMutateRowAsync(ConditionalRowMutation mutation) {

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/DummyBatchingDescriptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
/**
2626
* This is necessary workaround for {@link
27-
* com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStub#mutateRowsCallable()}. The settings
27+
* com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStub#bulkMutateRowsCallable()}. The settings
2828
* are exposed to the user using the {@link com.google.cloud.bigtable.data.v2.models.RowMutation}
2929
* wrapper, but the actual descriptor works on the underlying {@link
3030
* com.google.bigtable.v2.MutateRowsRequest}s. This class is used as a placeholder for the settings

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/mutaterows/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
/**
1717
* Implementation details for {@link
18-
* com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStub#mutateRowsCallable()}.
18+
* com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStub#bulkMutateRowsCallable()}.
1919
*
2020
* <p>The implementation adapts gax's {@link com.google.api.gax.rpc.BatchingCallable} to work with
2121
* Bigtable's MutateRows RPC. There are 3 customizations that are necessary:

0 commit comments

Comments
 (0)