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

Commit af9156b5 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...

Merge "Avoid ClassCastException thrown while parsing EF_SPDI" am: c1e7b702 am: 987992fc am: 3f35cc7f
am: 1f56b537

Change-Id: Ia8e6f2bc6e0d1f76fefd8b782c064904b18bb727
parents c5221723 1f56b537
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1883,7 +1883,7 @@ public class SIMRecords extends IccRecords {
                tmpSpdi.add(plmnCode);
            }
        }
        mSpdi = (String[]) tmpSpdi.toArray();
        mSpdi = tmpSpdi.toArray(new String[tmpSpdi.size()]);
    }

    /**