From 4d3ddb067ce88c65b570c55cf46c8c8203cc76d8 Mon Sep 17 00:00:00 2001 From: Yohei Yukawa Date: Thu, 3 Feb 2022 11:59:37 -0800 Subject: [PATCH] Add a missing "=" in dumpsys input_method My previous CL [1] lacked "=" when dumping NavigationBarController#mShouldShowImeSwitcherWhenImeIsShown into dumpsys. This CL fixes that typo. [1]: I5de9ac0dc8670842edf66306bb4c281c77cea376 75b935a12b37ffa97447b9acd80f94a4172bf3e6 Bug: 215551357 Test: adb shell dumpsys input_method | grep NavigationBarController Change-Id: Ifa2f5d2abcbe982b0afa5a6dad1573a86123485e --- .../android/inputmethodservice/NavigationBarController.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/java/android/inputmethodservice/NavigationBarController.java b/core/java/android/inputmethodservice/NavigationBarController.java index e5c22e4de08e1..83fc7276eabc2 100644 --- a/core/java/android/inputmethodservice/NavigationBarController.java +++ b/core/java/android/inputmethodservice/NavigationBarController.java @@ -546,7 +546,8 @@ final class NavigationBarController { public String toDebugString() { return "{mRenderGesturalNavButtons=" + mRenderGesturalNavButtons + " mNavigationBarFrame=" + mNavigationBarFrame - + " mShouldShowImeSwitcherWhenImeIsShown" + mShouldShowImeSwitcherWhenImeIsShown + + " mShouldShowImeSwitcherWhenImeIsShown=" + + mShouldShowImeSwitcherWhenImeIsShown + " mAppearance=0x" + Integer.toHexString(mAppearance) + " mDarkIntensity=" + mDarkIntensity + " mDrawLegacyNavigationBarBackground=" + mDrawLegacyNavigationBarBackground