Skip to content

Commit 308e2c8

Browse files
olavloitesduskis
authored andcommitted
---
yaml --- r: 35829 b: refs/heads/autosynth-dataproc c: 2eaa9f4 h: refs/heads/master i: 35827: be77aff
1 parent f8e1d3c commit 308e2c8

2 files changed

Lines changed: 1 addition & 20 deletions

File tree

  • branches/autosynth-dataproc/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
@@ -165,7 +165,7 @@ refs/tags/v0.78.0: 62d4bd30605ab3578f9a08d84487fb0b33ac2ff5
165165
refs/tags/v0.79.0: 82287b570708748c411d05c40f3932cff9606feb
166166
refs/tags/v0.80.0: f745e744d38e4fe636f34d0e04795ba3d014287d
167167
refs/tags/v0.81.0: ed3a0c85339ea6b73560b9a570abfbb76b93a263
168-
refs/heads/autosynth-dataproc: 20bc33fa6d71ce9fab3b7a92e994f90be302674f
168+
refs/heads/autosynth-dataproc: 2eaa9f463c9f32dcd3a475975d88b87d924df3b4
169169
refs/heads/autosynth-securitycenter: b24087060036e623e57d2454ba5dabeaf1e530c5
170170
refs/heads/autosynth-talent: 4ca901879f86aab61091cea52e8a9b653639df24
171171
refs/tags/v0.82.0: 7b9807d5d0a400c757b8905fee768be4c85eba25

branches/autosynth-dataproc/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)