Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 23f98ebe authored by Sundeep Ghuman's avatar Sundeep Ghuman
Browse files

Fix erroneous constructor in ScoredNetwork.java

Test: Unit tests in ag/310934.
Change-Id: I0075b15f59796872ea9779c04373563607d2f883
parent 47e1f497
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */);
    }

    /**