Skip to content

Commit e63d6c5

Browse files
olavloitesduskis
authored andcommitted
---
yaml --- r: 34675 b: refs/heads/autosynth-texttospeech c: 2eaa9f4 h: refs/heads/master i: 34673: 7257af6 34671: 22f4456
1 parent be17b3d commit e63d6c5

2 files changed

Lines changed: 1 addition & 20 deletions

File tree

  • branches/autosynth-texttospeech/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
@@ -140,7 +140,7 @@ refs/heads/autosynth-scheduler: a3de6480746d1cd586ca8b9d75c55a636f371539
140140
refs/heads/autosynth-spanner: d963fe4368e79cf6abae5d511785e8ced8ac57f4
141141
refs/heads/autosynth-speech: c563dcd420cce0a37c39b1b9c24be1b9ba604dc7
142142
refs/heads/autosynth-tasks: 25d1eafe8cb66b00e3dad765dac74a5b45b83e63
143-
refs/heads/autosynth-texttospeech: 20bc33fa6d71ce9fab3b7a92e994f90be302674f
143+
refs/heads/autosynth-texttospeech: 2eaa9f463c9f32dcd3a475975d88b87d924df3b4
144144
refs/heads/autosynth-trace: c94eef6e4d9c6fd24888216e28ca7271959c1cf0
145145
refs/heads/autosynth-websecurityscanner: fa561b356aabcd92d415ae8dc88fd8d87dbc5b23
146146
refs/heads/bigquerystorage: 06db74d123d7f8a3ef48755c2fcabed09faf8e64

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