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

Commit 3f35cc7f authored by Yoshiaki Naka's avatar Yoshiaki Naka Committed by android-build-merger
Browse files

Merge "Avoid ClassCastException thrown while parsing EF_SPDI" am: c1e7b702

am: 987992fc

Change-Id: Ie85a2f0ffe536434894a13814a77356eca868d49
parents 0db71f86 987992fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1806,7 +1806,7 @@ public class SIMRecords extends IccRecords {
                tmpSpdi.add(plmnCode);
            }
        }
        mSpdi = (String[]) tmpSpdi.toArray();
        mSpdi = tmpSpdi.toArray(new String[tmpSpdi.size()]);
    }

    /**