Skip to content

Commit 3555b31

Browse files
authored
---
yaml --- r: 9391 b: refs/heads/spanner-gapic-migration c: 9bbe190 h: refs/heads/master i: 9389: cee3921 9387: f8722e5 9383: f1091c9 9375: 87816cd
1 parent 595a93a commit 3555b31

31 files changed

Lines changed: 138 additions & 89 deletions

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ refs/tags/v0.34.0: bf31760a31a66acb239322a70dcd03dbe1d0c7ca
8080
refs/tags/v0.35.0: c28951c5f4cc97a1be07900d19df6984115a4bd6
8181
refs/tags/v0.36.0: 6b75c61f73e6827b3ca379bd54f88f750290162f
8282
refs/tags/v0.37.0: db2e142f92601709fdd48db159776f905742e30f
83-
refs/heads/spanner-gapic-migration: d94eb19cdb55c10ce8fefddd77ed54d9c9e11cb4
83+
refs/heads/spanner-gapic-migration: 9bbe1901097f79fa8103128a3abfcb80e3e48a40
8484
refs/tags/v0.38.0: c235ee4df5e1248e1769dae3f86a0d7ab7fd8301
8585
refs/tags/v0.39.0: ab231c9d22475242a43d6d9554aa4a3f736dab01
8686
refs/tags/v0.40.0: a1d5b05206cce7734365f1b910396a2c9d6605ec

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BigtableInstanceAdminClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2202,7 +2202,7 @@ public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsReq
22022202
}
22032203

22042204
@Override
2205-
public final void close() throws Exception {
2205+
public final void close() {
22062206
stub.close();
22072207
}
22082208

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BigtableInstanceAdminSettings.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ public BigtableInstanceAdminStubSettings.Builder getStubSettingsBuilder() {
307307
return ((BigtableInstanceAdminStubSettings.Builder) getStubSettings());
308308
}
309309

310+
// NEXT_MAJOR_VER: remove 'throws Exception'
310311
/**
311312
* Applies the given settings updater function to all of the unary API methods in this service.
312313
*

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BigtableTableAdminClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1826,7 +1826,7 @@ public final UnaryCallable<DeleteSnapshotRequest, Empty> deleteSnapshotCallable(
18261826
}
18271827

18281828
@Override
1829-
public final void close() throws Exception {
1829+
public final void close() {
18301830
stub.close();
18311831
}
18321832

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BigtableTableAdminSettings.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ public BigtableTableAdminStubSettings.Builder getStubSettingsBuilder() {
255255
return ((BigtableTableAdminStubSettings.Builder) getStubSettings());
256256
}
257257

258+
// NEXT_MAJOR_VER: remove 'throws Exception'
258259
/**
259260
* Applies the given settings updater function to all of the unary API methods in this service.
260261
*

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStub.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,7 @@ public UnaryCallable<SetIamPolicyRequest, Policy> setIamPolicyCallable() {
173173
testIamPermissionsCallable() {
174174
throw new UnsupportedOperationException("Not implemented: testIamPermissionsCallable()");
175175
}
176+
177+
@Override
178+
public abstract void close();
176179
}

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStubSettings.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,7 @@ protected Builder(BigtableInstanceAdminStubSettings settings) {
866866
testIamPermissionsSettings);
867867
}
868868

869+
// NEXT_MAJOR_VER: remove 'throws Exception'
869870
/**
870871
* Applies the given settings updater function to all of the unary API methods in this service.
871872
*

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStub.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,7 @@ public UnaryCallable<ListSnapshotsRequest, ListSnapshotsResponse> listSnapshotsC
136136
public UnaryCallable<DeleteSnapshotRequest, Empty> deleteSnapshotCallable() {
137137
throw new UnsupportedOperationException("Not implemented: deleteSnapshotCallable()");
138138
}
139+
140+
@Override
141+
public abstract void close();
139142
}

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStubSettings.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,7 @@ protected Builder(BigtableTableAdminStubSettings settings) {
704704
deleteSnapshotSettings);
705705
}
706706

707+
// NEXT_MAJOR_VER: remove 'throws Exception'
707708
/**
708709
* Applies the given settings updater function to all of the unary API methods in this service.
709710
*

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ public UnaryCallable<SetIamPolicyRequest, Policy> setIamPolicyCallable() {
755755
}
756756

757757
@Override
758-
public final void close() throws Exception {
758+
public final void close() {
759759
shutdown();
760760
}
761761

0 commit comments

Comments
 (0)