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

Commit 987992fc 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

Change-Id: I6a9457b2d4e7eb9a3099a7017854ee5611918c8b
parents f540f604 c1e7b702
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()]);
    }

    /**