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

Commit 9f85ad8c authored by Mathew Inwood's avatar Mathew Inwood Committed by android-build-merger
Browse files

Merge "Use commas to separate API exemptions list, not colon."

am: 2fddfcdc

Change-Id: I8435589ca414dec8ac7a857f6639b8d39fa18d98
parents b3673e96 2fddfcdc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2720,7 +2720,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);
            }