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
This commit is contained in:
Mark Hansen
2021-04-18 23:51:49 +00:00
parent a3c90ed855
commit 89a5375d83

View File

@@ -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);
}