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

Commit 89a5375d authored by Mark Hansen's avatar Mark Hansen
Browse files

Bugfix: Make InsetsController dump() respect prefix

Before, the prefix was printed on a blank line above InsetsController, this wasn't intended.

BUG=140002885

Change-Id: Ife14e60400dc73232302a797b6b9b8f4d201535f
parent a3c90ed8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1441,7 +1441,7 @@ public class InsetsController implements WindowInsetsController, InsetsAnimation
    }

    void dump(String prefix, PrintWriter pw) {
        pw.println(prefix); pw.println("InsetsController:");
        pw.print(prefix); pw.println("InsetsController:");
        mState.dump(prefix + "  ", pw);
    }