Skip to content

Commit 2e95631

Browse files
authored
testing: Stabilize GrpcCleanupRule, GrpcServerRule (#10494)
Closes #2488.
1 parent 3e44bbf commit 2e95631

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Diff for: testing/src/main/java/io/grpc/testing/GrpcCleanupRule.java

-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
import com.google.common.base.Stopwatch;
2424
import com.google.common.base.Ticker;
2525
import com.google.common.collect.Lists;
26-
import io.grpc.ExperimentalApi;
2726
import io.grpc.ManagedChannel;
2827
import io.grpc.Server;
2928
import java.util.ArrayList;
@@ -70,7 +69,6 @@
7069
*
7170
* @since 1.13.0
7271
*/
73-
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/2488")
7472
@NotThreadSafe
7573
public final class GrpcCleanupRule extends ExternalResource {
7674

Diff for: testing/src/main/java/io/grpc/testing/GrpcServerRule.java

-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import static com.google.common.base.Preconditions.checkState;
2020

2121
import io.grpc.BindableService;
22-
import io.grpc.ExperimentalApi;
2322
import io.grpc.ManagedChannel;
2423
import io.grpc.Server;
2524
import io.grpc.ServerServiceDefinition;
@@ -48,7 +47,6 @@
4847
* <p>An {@link AbstractStub} can be created against this service by using the
4948
* {@link ManagedChannel} provided by {@link GrpcServerRule#getChannel()}.
5049
*/
51-
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/2488")
5250
public final class GrpcServerRule extends ExternalResource {
5351

5452
private ManagedChannel channel;

0 commit comments

Comments
 (0)