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

Commit 272b3903 authored by Bryce Lee's avatar Bryce Lee Committed by android-build-merger
Browse files

Merge "Revert "Disallow starting activities without new task from non-activity...

Merge "Revert "Disallow starting activities without new task from non-activity context."" into oc-dev
am: 367b880c

Change-Id: I0a0d96048c0b3dd504d0c90dbf80a8299c4b96a4
parents e9f41423 367b880c
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -847,8 +847,7 @@ class ContextImpl extends Context {
        // generally not allowed, except if the caller specifies the task id the activity should
        // be launched in.
        if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0
                && (options == null
                || ActivityOptions.fromBundle(options).getLaunchTaskId() == -1)) {
                && options != null && ActivityOptions.fromBundle(options).getLaunchTaskId() == -1) {
            throw new AndroidRuntimeException(
                    "Calling startActivity() from outside of an Activity "
                    + " context requires the FLAG_ACTIVITY_NEW_TASK flag."