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

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

Merge "Add type annotation to ActivityOptions." into main

parents b7bdeebd 439d60d5
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -1846,6 +1846,7 @@ public class ActivityOptions extends ComponentOptions {
    }
    }


    /** @hide */
    /** @hide */
    @WindowConfiguration.WindowingMode
    public int getLaunchWindowingMode() {
    public int getLaunchWindowingMode() {
        return mLaunchWindowingMode;
        return mLaunchWindowingMode;
    }
    }
@@ -1855,7 +1856,7 @@ public class ActivityOptions extends ComponentOptions {
     * @hide
     * @hide
     */
     */
    @TestApi
    @TestApi
    public void setLaunchWindowingMode(int windowingMode) {
    public void setLaunchWindowingMode(@WindowConfiguration.WindowingMode int windowingMode) {
        mLaunchWindowingMode = windowingMode;
        mLaunchWindowingMode = windowingMode;
    }
    }