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

Commit 1f56b537 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

am: 3f35cc7f

Change-Id: I274a9b5f64d7b98c1f2e6d2596ff1b5ba67953af
parents 26bda5f3 3f35cc7f
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()]);
    }

    /**