aboutsummaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorzpencer <spencerfang@google.com>2018-09-05 18:48:42 -0700
committerGitHub <noreply@github.com>2018-09-05 18:48:42 -0700
commit2fca42feb93f1bda1a80f6649d1e6304e9a67b08 (patch)
treefc016159bd41af9108ece6e5e5d1cdcb58ed9262 /testing
parent1b6adaff61eb47f9753997b464e1e3edef5346a4 (diff)
downloadgrpc-grpc-java-2fca42feb93f1bda1a80f6649d1e6304e9a67b08.tar.gz
all: prepend internal classes with Internal (#4826)
This is a safer way to hide the classes, because they will not appear in public targets for some build configurations.
Diffstat (limited to 'testing')
-rw-r--r--testing/src/main/java/io/grpc/internal/testing/AbstractTransportTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/src/main/java/io/grpc/internal/testing/AbstractTransportTest.java b/testing/src/main/java/io/grpc/internal/testing/AbstractTransportTest.java
index 7c3de172f..4c025bff4 100644
--- a/testing/src/main/java/io/grpc/internal/testing/AbstractTransportTest.java
+++ b/testing/src/main/java/io/grpc/internal/testing/AbstractTransportTest.java
@@ -48,9 +48,9 @@ import io.grpc.CallCredentials;
import io.grpc.CallOptions;
import io.grpc.ClientStreamTracer;
import io.grpc.Grpc;
-import io.grpc.Instrumented;
import io.grpc.InternalChannelz.SocketStats;
import io.grpc.InternalChannelz.TransportStats;
+import io.grpc.InternalInstrumented;
import io.grpc.Metadata;
import io.grpc.MethodDescriptor;
import io.grpc.ServerStreamTracer;
@@ -2043,7 +2043,7 @@ public abstract class AbstractTransportTest {
}
}
- private static TransportStats getTransportStats(Instrumented<SocketStats> socket)
+ private static TransportStats getTransportStats(InternalInstrumented<SocketStats> socket)
throws ExecutionException, InterruptedException {
return socket.getStats().get().data;
}