diff options
author | 2021-03-17 13:53:59 +0000 | |
---|---|---|
committer | 2021-03-17 13:53:59 +0000 | |
commit | 0bbe29b6c49b16ec61702eadcef40d043ab0a4e8 (patch) | |
tree | 303cf11dc18ff97c3979e787d842fe2f043a6665 | |
parent | 224131da0387592ff7f9144d0991763438fc0f19 (diff) | |
parent | 106259febb1346205116f1f7718eb502f1aa7245 (diff) |
Merge "Always use Slog in InputMethodSubtypeSwitchingController" into sc-dev
-rw-r--r-- | services/core/java/com/android/server/inputmethod/InputMethodSubtypeSwitchingController.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/services/core/java/com/android/server/inputmethod/InputMethodSubtypeSwitchingController.java b/services/core/java/com/android/server/inputmethod/InputMethodSubtypeSwitchingController.java index b13c307497d9..7e5e427cf0a1 100644 --- a/services/core/java/com/android/server/inputmethod/InputMethodSubtypeSwitchingController.java +++ b/services/core/java/com/android/server/inputmethod/InputMethodSubtypeSwitchingController.java @@ -21,7 +21,6 @@ import android.content.Context; import android.content.pm.PackageManager; import android.text.TextUtils; import android.util.ArraySet; -import android.util.Log; import android.util.Printer; import android.util.Slog; import android.view.inputmethod.InputMethodInfo; @@ -502,7 +501,7 @@ final class InputMethodSubtypeSwitchingController { public void onUserActionLocked(InputMethodInfo imi, InputMethodSubtype subtype) { if (mController == null) { if (DEBUG) { - Log.e(TAG, "mController shouldn't be null."); + Slog.e(TAG, "mController shouldn't be null."); } return; } @@ -520,7 +519,7 @@ final class InputMethodSubtypeSwitchingController { InputMethodSubtype subtype) { if (mController == null) { if (DEBUG) { - Log.e(TAG, "mController shouldn't be null."); + Slog.e(TAG, "mController shouldn't be null."); } return null; } |