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

Commit d598caac authored by Mathew Inwood's avatar Mathew Inwood Committed by Android (Google) Code Review
Browse files

Merge "Use commas to separate API exemptions list, not colon." into pi-dev

parents fe930f20 b559e75d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2908,7 +2908,7 @@ public class ActivityManagerService extends IActivityManager.Stub
                    mBlacklistDisabled = false;
                    mExemptions = TextUtils.isEmpty(exemptions)
                            ? Collections.emptyList()
                            : Arrays.asList(exemptions.split(":"));
                            : Arrays.asList(exemptions.split(","));
                }
                zygoteProcess.setApiBlacklistExemptions(mExemptions);
            }