Skip to content

Commit 3ee2904

Browse files
authored
---
yaml --- r: 9379 b: refs/heads/spanner-gapic-migration c: aa0de0f h: refs/heads/master i: 9377: b0258fa 9375: 87816cd
1 parent dab196b commit 3ee2904

264 files changed

Lines changed: 18389 additions & 112 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

[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: c0d4b28dddbcbfca3456c88f99d2d936a9eb1ca8
83+
refs/heads/spanner-gapic-migration: aa0de0f2f84ff7ad3d51e637b2e1f8a1ac8e3e76
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-bigquerydatatransfer/src/main/java/com/google/cloud/bigquery/datatransfer/v1/DataTransferServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ private final CheckValidCredsResponse checkValidCreds(CheckValidCredsRequest req
15901590
}
15911591

15921592
@Override
1593-
public final void close() throws Exception {
1593+
public final void close() {
15941594
stub.close();
15951595
}
15961596

branches/spanner-gapic-migration/google-cloud-bigquerydatatransfer/src/main/java/com/google/cloud/bigquery/datatransfer/v1/DataTransferServiceSettings.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ public DataTransferServiceStubSettings.Builder getStubSettingsBuilder() {
228228
return ((DataTransferServiceStubSettings.Builder) getStubSettings());
229229
}
230230

231+
// NEXT_MAJOR_VER: remove 'throws Exception'
231232
/**
232233
* Applies the given settings updater function to all of the unary API methods in this service.
233234
*

branches/spanner-gapic-migration/google-cloud-bigquerydatatransfer/src/main/java/com/google/cloud/bigquery/datatransfer/v1/stub/DataTransferServiceStub.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,7 @@ public UnaryCallable<DeleteTransferRunRequest, Empty> deleteTransferRunCallable(
133133
public UnaryCallable<CheckValidCredsRequest, CheckValidCredsResponse> checkValidCredsCallable() {
134134
throw new UnsupportedOperationException("Not implemented: checkValidCredsCallable()");
135135
}
136+
137+
@Override
138+
public abstract void close();
136139
}

branches/spanner-gapic-migration/google-cloud-bigquerydatatransfer/src/main/java/com/google/cloud/bigquery/datatransfer/v1/stub/DataTransferServiceStubSettings.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -759,6 +759,7 @@ protected Builder(DataTransferServiceStubSettings settings) {
759759
checkValidCredsSettings);
760760
}
761761

762+
// NEXT_MAJOR_VER: remove 'throws Exception'
762763
/**
763764
* Applies the given settings updater function to all of the unary API methods in this service.
764765
*

branches/spanner-gapic-migration/google-cloud-bigquerydatatransfer/src/main/java/com/google/cloud/bigquery/datatransfer/v1/stub/GrpcDataTransferServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ public UnaryCallable<CheckValidCredsRequest, CheckValidCredsResponse> checkValid
485485
}
486486

487487
@Override
488-
public final void close() throws Exception {
488+
public final void close() {
489489
shutdown();
490490
}
491491

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/BaseBigtableDataClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ public final ReadModifyWriteRowResponse readModifyWriteRow(ReadModifyWriteRowReq
712712
}
713713

714714
@Override
715-
public final void close() throws Exception {
715+
public final void close() {
716716
stub.close();
717717
}
718718

branches/spanner-gapic-migration/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/BaseBigtableDataSettings.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ public BigtableStubSettings.Builder getStubSettingsBuilder() {
189189
return ((BigtableStubSettings.Builder) getStubSettings());
190190
}
191191

192+
// NEXT_MAJOR_VER: remove 'throws Exception'
192193
/**
193194
* Applies the given settings updater function to all of the unary API methods in this service.
194195
*

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,7 @@ public ServerStreamingCallable<MutateRowsRequest, MutateRowsResponse> mutateRows
6969
readModifyWriteRowCallable() {
7070
throw new UnsupportedOperationException("Not implemented: readModifyWriteRowCallable()");
7171
}
72+
73+
@Override
74+
public abstract void close();
7275
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ protected Builder(BigtableStubSettings settings) {
331331
mutateRowSettings, checkAndMutateRowSettings, readModifyWriteRowSettings);
332332
}
333333

334+
// NEXT_MAJOR_VER: remove 'throws Exception'
334335
/**
335336
* Applies the given settings updater function to all of the unary API methods in this service.
336337
*

0 commit comments

Comments
 (0)