mirror of https://github.com/grpc/grpc-java.git
cronet, grpc-lb, interop-testing: fix lints #3848
This commit is contained in:
parent
1e0a9d0bb5
commit
173ca5d332
|
|
@ -31,7 +31,6 @@ import io.grpc.InternalTransportStats;
|
|||
import io.grpc.internal.ConnectionClientTransport;
|
||||
import io.grpc.internal.GrpcUtil;
|
||||
import io.grpc.internal.StatsTraceContext;
|
||||
import io.grpc.internal.TransportTracer;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashSet;
|
||||
|
|
|
|||
|
|
@ -1395,7 +1395,7 @@ public class GrpclbLoadBalancerTest {
|
|||
|
||||
// Attempted to connect to balancer
|
||||
assertEquals(1, fakeOobChannels.size());
|
||||
ManagedChannel oobChannel = fakeOobChannels.poll();
|
||||
fakeOobChannels.poll();
|
||||
inOrder.verify(mockLbService).balanceLoad(lbResponseObserverCaptor.capture());
|
||||
StreamObserver<LoadBalanceResponse> lbResponseObserver = lbResponseObserverCaptor.getValue();
|
||||
assertEquals(1, lbRequestObservers.size());
|
||||
|
|
|
|||
|
|
@ -1843,8 +1843,6 @@ public abstract class AbstractInteropTest {
|
|||
// Server is not in the same process. We can't check server-side stats.
|
||||
return;
|
||||
}
|
||||
AssertionError checkFailure = null;
|
||||
boolean passed = false;
|
||||
|
||||
if (metricsExpected()) {
|
||||
MetricsRecord serverStartRecord;
|
||||
|
|
|
|||
Loading…
Reference in New Issue