Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit c6ff5c5

Browse files
committed
fix build
1 parent 7abd5cb commit c6ff5c5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/AwaitConsistencyCallable.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@
5151
* <p>This callable wraps GenerateConsistencyToken and CheckConsistency RPCs. It will generate a
5252
* token then poll until isConsistent is true.
5353
*/
54-
class AwaitConsistencyCallable extends UnaryCallable<ConsistencyRequest, Void> {
54+
public class AwaitConsistencyCallable extends UnaryCallable<ConsistencyRequest, Void> {
5555
private final UnaryCallable<GenerateConsistencyTokenRequest, GenerateConsistencyTokenResponse>
5656
generateCallable;
5757
private final UnaryCallable<CheckConsistencyRequest, CheckConsistencyResponse> checkCallable;
5858
private final RetryingExecutor<CheckConsistencyResponse> executor;
5959

6060
@Nullable private final TableAdminRequestContext requestContext;
6161

62-
static AwaitConsistencyCallable create(
62+
public static AwaitConsistencyCallable create(
6363
UnaryCallable<GenerateConsistencyTokenRequest, GenerateConsistencyTokenResponse>
6464
generateCallable,
6565
UnaryCallable<CheckConsistencyRequest, CheckConsistencyResponse> checkCallable,
@@ -79,7 +79,7 @@ static AwaitConsistencyCallable create(
7979
generateCallable, checkCallable, retryingExecutor, requestContext);
8080
}
8181

82-
static AwaitConsistencyCallable create(
82+
public static AwaitConsistencyCallable create(
8383
UnaryCallable<GenerateConsistencyTokenRequest, GenerateConsistencyTokenResponse>
8484
generateCallable,
8585
UnaryCallable<CheckConsistencyRequest, CheckConsistencyResponse> checkCallable,

0 commit comments

Comments
 (0)