Fix a var name in a comment

Remaining comment from aosp/2527124

Test: comment-only change
Change-Id: Ic0418bf0bc15b854e25e211bc7399d83487fe971
This commit is contained in:
Chalard Jean
2023-04-10 10:38:20 +09:00
parent 5edc307e57
commit e2294fb13e

View File

@@ -308,7 +308,7 @@ public final class NetworkTemplate implements Parcelable {
public static NetworkTemplate buildTemplateCarrierMetered(@NonNull String subscriberId) { public static NetworkTemplate buildTemplateCarrierMetered(@NonNull String subscriberId) {
throwAtLeastU(); throwAtLeastU();
return new NetworkTemplate.Builder(MATCH_CARRIER) return new NetworkTemplate.Builder(MATCH_CARRIER)
// Set.of will throw if wifiNetworkKey is null, which is the historical // Set.of will throw if subscriberId is null, which is the historical
// behavior and should be preserved. // behavior and should be preserved.
.setSubscriberIds(Set.of(subscriberId)) .setSubscriberIds(Set.of(subscriberId))
.setMeteredness(METERED_YES) .setMeteredness(METERED_YES)