Skip to content

Commit

Permalink
Delete no longer used class.
Browse files Browse the repository at this point in the history
  • Loading branch information
voidzcy committed Jan 28, 2020
1 parent 19d2d7c commit 5adefa9
Showing 1 changed file with 0 additions and 21 deletions.
Expand Up @@ -41,7 +41,6 @@
import io.grpc.Status;
import io.grpc.internal.ServiceConfigUtil.LbConfig;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import javax.annotation.Nullable;
Expand Down Expand Up @@ -333,26 +332,6 @@ public String toString() {
}
}

@VisibleForTesting
static final class ResolvedPolicySelection {
final PolicySelection policySelection;
final List<EquivalentAddressGroup> serverList;

ResolvedPolicySelection(
PolicySelection policySelection, List<EquivalentAddressGroup> serverList) {
this.policySelection = checkNotNull(policySelection, "policySelection");
this.serverList = Collections.unmodifiableList(checkNotNull(serverList, "serverList"));
}

@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("policySelection", policySelection)
.add("serverList", serverList)
.toString();
}
}

private static final class EmptyPicker extends SubchannelPicker {

@Override
Expand Down

0 comments on commit 5adefa9

Please sign in to comment.