Fix erroneous constructor in ScoredNetwork.java

Test: Unit tests in ag/310934.
Change-Id: I0075b15f59796872ea9779c04373563607d2f883
This commit is contained in:
Sundeep Ghuman
2016-12-12 14:36:03 -08:00
parent 47e1f497c0
commit 23f98ebe33

View File

@@ -104,7 +104,7 @@ public class ScoredNetwork implements Parcelable {
* metered.
*/
public ScoredNetwork(NetworkKey networkKey, RssiCurve rssiCurve, boolean meteredHint) {
this(networkKey, rssiCurve, false /* meteredHint */, null /* attributes */);
this(networkKey, rssiCurve, meteredHint, null /* attributes */);
}
/**