Skip to content

Commit 6f769fe

Browse files
olavloitesduskis
authored andcommitted
---
yaml --- r: 30173 b: refs/heads/autosynth-asset c: 2eaa9f4 h: refs/heads/master i: 30171: d2c851d
1 parent 300bf9c commit 6f769fe

2 files changed

Lines changed: 1 addition & 20 deletions

File tree

  • branches/autosynth-asset/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ refs/heads/autosynth-vision: 20ee492a4f6a5cf37dce4142ffc372d7054c5ebd
120120
refs/heads/spanner: b01127f885b4611bf1852abb0ce481eeb7fcc131
121121
refs/tags/v0.68.0: 9cc799fcf68c82ab431d425fefa58ef615ce8e5b
122122
refs/tags/v0.69.0: 78f67a29e8b9c46ba01de566a2eae0fd1c03edea
123-
refs/heads/autosynth-asset: 20bc33fa6d71ce9fab3b7a92e994f90be302674f
123+
refs/heads/autosynth-asset: 2eaa9f463c9f32dcd3a475975d88b87d924df3b4
124124
refs/heads/autosynth-automl: 7fcabb1e54ca9ded6bec10f41590d29ece3a6367
125125
refs/heads/autosynth-bigquerydatatransfer: d88aa5aae5fd9d3c6d75bbab1a05162c6d4d948f
126126
refs/heads/autosynth-bigquerystorage: d2c53da3b012e38c662e4df0738042435f19365f

branches/autosynth-asset/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerImpl.java

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import com.google.api.client.util.BackOff;
2525
import com.google.api.client.util.ExponentialBackOff;
2626
import com.google.api.gax.paging.Page;
27-
import com.google.api.pathtemplate.PathTemplate;
2827
import com.google.cloud.BaseService;
2928
import com.google.cloud.PageImpl;
3029
import com.google.cloud.PageImpl.NextPageFetcher;
@@ -36,9 +35,6 @@
3635
import com.google.common.collect.Maps;
3736
import com.google.common.util.concurrent.Futures;
3837
import com.google.common.util.concurrent.ListenableFuture;
39-
import com.google.protobuf.Any;
40-
import com.google.protobuf.InvalidProtocolBufferException;
41-
import com.google.protobuf.Message;
4238
import io.grpc.Context;
4339
import io.opencensus.common.Scope;
4440
import io.opencensus.trace.AttributeValue;
@@ -66,11 +62,6 @@
6662
class SpannerImpl extends BaseService<SpannerOptions> implements Spanner {
6763
private static final int MIN_BACKOFF_MS = 1000;
6864
private static final int MAX_BACKOFF_MS = 32000;
69-
private static final PathTemplate OP_NAME_TEMPLATE =
70-
PathTemplate.create(
71-
"projects/{project}/instances/{instance}/databases/{database}/operations/{operation}");
72-
private static final PathTemplate PROJECT_NAME_TEMPLATE =
73-
PathTemplate.create("projects/{project}");
7465

7566
private static final Logger logger = Logger.getLogger(SpannerImpl.class.getName());
7667
private static final Tracer tracer = Tracing.getTracer();
@@ -343,16 +334,6 @@ Object value() {
343334
return ImmutableMap.copyOf(tmp);
344335
}
345336

346-
private static <T extends Message> T unpack(Any response, Class<T> clazz)
347-
throws SpannerException {
348-
try {
349-
return response.unpack(clazz);
350-
} catch (InvalidProtocolBufferException e) {
351-
throw SpannerExceptionFactory.newSpannerException(
352-
ErrorCode.INTERNAL, "Error unpacking response", e);
353-
}
354-
}
355-
356337
abstract static class PageFetcher<S, T> implements NextPageFetcher<S> {
357338
private String nextPageToken;
358339

0 commit comments

Comments
 (0)