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

Commit cdead157 authored by Jorim Jaggi's avatar Jorim Jaggi Committed by Automerger Merge Worker
Browse files

Merge "WindowInsets: Ignore consumeStableInsets()" into rvc-dev am: d80aee2e...

Merge "WindowInsets: Ignore consumeStableInsets()" into rvc-dev am: d80aee2e am: 104cd6c7 am: b63b6a92

Change-Id: I22cfa5948b881c9c80408ca04fa13181462692bb
parents 3e96ef1e b63b6a92
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -818,12 +818,13 @@ public final class WindowInsets {
     * @return A modified copy of this WindowInsets
     * @deprecated Consuming of different parts individually of a {@link WindowInsets} instance is
     * deprecated, since {@link WindowInsets} contains many different insets. Use {@link #CONSUMED}
     * instead to stop dispatching insets.
     * instead to stop dispatching insets. On {@link android.os.Build.VERSION_CODES#R R}, this
     * method has no effect.
     */
    @Deprecated
    @NonNull
    public WindowInsets consumeStableInsets() {
        return consumeSystemWindowInsets();
        return this;
    }

    /**