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 b428ae3
Showing 1 changed file with 0 additions and 20 deletions.
Expand Up @@ -333,26 +333,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 b428ae3

Please sign in to comment.