Skip to content

Commit 4d58b5e

Browse files
committed
Merge branch 'master' into nextAndComplete
2 parents 026002a + 176f3ee commit 4d58b5e

File tree

226 files changed

+1097
-551
lines changed

Some content is hidden

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

226 files changed

+1097
-551
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module(
22
name = "grpc-java",
33
compatibility_level = 0,
44
repo_name = "io_grpc_grpc_java",
5-
version = "1.70.0-SNAPSHOT", # CURRENT_GRPC_VERSION
5+
version = "1.71.0-SNAPSHOT", # CURRENT_GRPC_VERSION
66
)
77

88
# GRPC_DEPS_START

alts/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ java_library(
1818
"@com_google_protobuf//:protobuf_java",
1919
"@com_google_protobuf//:protobuf_java_util",
2020
artifact("com.google.code.findbugs:jsr305"),
21+
artifact("com.google.errorprone:error_prone_annotations"),
2122
artifact("com.google.guava:guava"),
2223
artifact("io.netty:netty-buffer"),
2324
artifact("io.netty:netty-codec"),

alts/src/generated/main/grpc/io/grpc/alts/internal/HandshakerServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ protected HandshakerServiceBlockingV2Stub build(
204204
}
205205

206206
/**
207-
* A stub to allow clients to do llimited synchronous rpc calls to service HandshakerService.
207+
* A stub to allow clients to do limited synchronous rpc calls to service HandshakerService.
208208
*/
209209
public static final class HandshakerServiceBlockingStub
210210
extends io.grpc.stub.AbstractBlockingStub<HandshakerServiceBlockingStub> {

alts/src/main/java/io/grpc/alts/internal/AsyncSemaphore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
package io.grpc.alts.internal;
1818

19+
import com.google.errorprone.annotations.concurrent.GuardedBy;
1920
import io.netty.channel.ChannelFuture;
2021
import io.netty.channel.ChannelHandlerContext;
2122
import io.netty.channel.ChannelPromise;
2223
import java.util.LinkedList;
2324
import java.util.Queue;
24-
import javax.annotation.concurrent.GuardedBy;
2525

2626
/** Provides a semaphore primitive, without blocking waiting on permits. */
2727
final class AsyncSemaphore {

android-interop-testing/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ description = 'gRPC: Android Integration Testing'
77

88
repositories {
99
google()
10-
mavenCentral()
1110
}
1211

1312
android {

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/LoadBalancerStatsServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ public io.grpc.testing.integration.Messages.LoadBalancerAccumulatedStatsResponse
262262
}
263263

264264
/**
265-
* A stub to allow clients to do llimited synchronous rpc calls to service LoadBalancerStatsService.
265+
* A stub to allow clients to do limited synchronous rpc calls to service LoadBalancerStatsService.
266266
* <pre>
267267
* A service used to obtain stats for verifying LB behavior.
268268
* </pre>

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/MetricsServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public io.grpc.testing.integration.Metrics.GaugeResponse getGauge(io.grpc.testin
252252
}
253253

254254
/**
255-
* A stub to allow clients to do llimited synchronous rpc calls to service MetricsService.
255+
* A stub to allow clients to do limited synchronous rpc calls to service MetricsService.
256256
*/
257257
public static final class MetricsServiceBlockingStub
258258
extends io.grpc.stub.AbstractBlockingStub<MetricsServiceBlockingStub> {

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/ReconnectServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public io.grpc.testing.integration.Messages.ReconnectInfo stop(io.grpc.testing.i
244244
}
245245

246246
/**
247-
* A stub to allow clients to do llimited synchronous rpc calls to service ReconnectService.
247+
* A stub to allow clients to do limited synchronous rpc calls to service ReconnectService.
248248
* <pre>
249249
* A service used to control reconnect server.
250250
* </pre>

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/TestServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ public io.grpc.testing.integration.EmptyProtos.Empty unimplementedCall(io.grpc.t
671671
}
672672

673673
/**
674-
* A stub to allow clients to do llimited synchronous rpc calls to service TestService.
674+
* A stub to allow clients to do limited synchronous rpc calls to service TestService.
675675
* <pre>
676676
* A simple service to test the various types of RPCs and experiment with
677677
* performance with various types of payload.

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/UnimplementedServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public io.grpc.testing.integration.EmptyProtos.Empty unimplementedCall(io.grpc.t
206206
}
207207

208208
/**
209-
* A stub to allow clients to do llimited synchronous rpc calls to service UnimplementedService.
209+
* A stub to allow clients to do limited synchronous rpc calls to service UnimplementedService.
210210
* <pre>
211211
* A simple service NOT implemented at servers so clients can test for
212212
* that case.

0 commit comments

Comments
 (0)