We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4cd5cc commit a65f94fCopy full SHA for a65f94f
1 file changed
google-cloud-firestore/src/main/java/com/google/cloud/firestore/CollectionGroup.java
@@ -116,8 +116,7 @@ public ApiFuture<List<QueryPartition>> getPartitions(long desiredPartitionCount)
116
Span span = traceUtil.startSpan(TraceUtil.SPAN_NAME_PARTITIONQUERY);
117
try (Scope scope = traceUtil.getTracer().withSpan(span)) {
118
return ApiFutures.transform(
119
- rpcContext.sendRequest(
120
- request, rpcContext.getClient().partitionQueryPagedCallable()),
+ rpcContext.sendRequest(request, rpcContext.getClient().partitionQueryPagedCallable()),
121
new ApiFunction<PartitionQueryPagedResponse, List<QueryPartition>>() {
122
@Override
123
public List<QueryPartition> apply(PartitionQueryPagedResponse response) {
0 commit comments