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

Commit eaed9ef0 authored by sghuman's avatar sghuman Committed by android-build-merger
Browse files

Merge "Fix erroneous constructor in ScoredNetwork.java"

am: 9d55f437

Change-Id: I6f24c92a9638f91197a4d17bfdc3fbeeede3daf4
parents 964f769d 9d55f437
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 */);
    }

    /**