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

Commit e15bce38 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Get system resources instead of phone context" into oc-dr1-dev

parents bcd74840 ce0c0019
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2001,9 +2001,9 @@ public class ServiceStateTracker extends Handler {
     */
    private boolean isRoamIndForHomeSystem(String roamInd) {
        // retrieve the carrier-specified list of ERIs for home system
        log("isRoamIndForHomeSystem: " + mPhone.getContext().getResources()
        log("isRoamIndForHomeSystem: " + Resources.getSystem()
                .getConfiguration().toString());
        String[] homeRoamIndicators = mPhone.getContext().getResources()
        String[] homeRoamIndicators = Resources.getSystem()
                .getStringArray(com.android.internal.R.array.config_cdma_home_system);

        if (homeRoamIndicators != null) {