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

Commit 627bd99e authored by Anil Muthineni's avatar Anil Muthineni Committed by Android (Google) Code Review
Browse files

Merge "Write size of operators in writeToParcel()" into mnc-dev

parents a1c98021 554beb58
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);
            }