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

Commit 7a5cc8b3 authored by Anil Muthineni's avatar Anil Muthineni Committed by Android Git Automerger
Browse files

am 627bd99e: Merge "Write size of operators in writeToParcel()" into mnc-dev

* commit '627bd99e':
  Write size of operators in writeToParcel()
parents cfbe2474 627bd99e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -88,6 +88,7 @@ public class CellNetworkScanResult implements Parcelable {
    public void writeToParcel(Parcel out, int flags) {
        out.writeInt(mStatus);
        if (mOperators != null && mOperators.size() > 0) {
            out.writeInt(mOperators.size());
            for (OperatorInfo network : mOperators) {
                network.writeToParcel(out, flags);
            }