summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jorge Gil <jorgegil@google.com> 2025-03-17 19:02:28 +0000
committer Jorge Gil <jorgegil@google.com> 2025-03-17 19:02:28 +0000
commit91af42ddece3a30666bf0a4f72fe8b170ed7d0f7 (patch)
tree3f6305d2ef139a489e3de0ab91c14c935f06927b
parent25ef3aab06e60eb7e40ec8f0ca43ccff18eba796 (diff)
Add missing new line in desktop dump
Bug: None Flag: EXEMPT - bugfix Test: adb shell dumpsys activity service SystemUIService WMShell | grep -e DesktopRepository -A 20 -B 20 Change-Id: I4799927b4a32286b2bab97e5f00b0a58ddf6b8a2
-rw-r--r--libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java b/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java
index ed5e0c608675..14675ab680d0 100644
--- a/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java
+++ b/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java
@@ -448,6 +448,6 @@ public class DesktopModeStatus {
pw.println(maxTaskLimitHandle == null ? "null" : maxTaskLimitHandle.getInt(/* def= */ -1));
pw.print(innerPrefix); pw.print("showAppHandle config override=");
- pw.print(overridesShowAppHandle(context));
+ pw.println(overridesShowAppHandle(context));
}
}