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

Commit f7f331ee authored by Alan Wang's avatar Alan Wang
Browse files

Telephony: Ignore the timingAdvance field in SignalStrength

Ignore the timingAdvance field since the frameworks is not
utilizing this field.

Change-Id: I8644f20aa1918514da88db5a8bc7394263d61e30
parent 591a4001
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -318,6 +318,9 @@ public class SignalStrength implements Parcelable {
        ss.mLteRsrq = in.readInt();
        ss.mLteRssnr = in.readInt();
        ss.mLteCqi = in.readInt();
        // ignore the timingAdvance field since
        // the frameworks is not utilizing this field
        in.readInt();
        ss.mTdScdmaRscp = in.readInt();
        return ss;
    }