diff options
author | 2020-08-12 13:06:32 +0200 | |
---|---|---|
committer | 2020-08-12 13:07:02 +0200 | |
commit | 444da5641464a34fc64ab9d35ae29d3c792b8012 (patch) | |
tree | bef73dce460ec01f75d4d90fbca414368e877a5d /java/src/com/android/inputmethod | |
parent | b01f678ca850d970f1bd47fd7e4a6aeacd72f3af (diff) | |
download | latinime-444da5641464a34fc64ab9d35ae29d3c792b8012.tar.gz latinime-444da5641464a34fc64ab9d35ae29d3c792b8012.tar.xz latinime-444da5641464a34fc64ab9d35ae29d3c792b8012.zip |
Update LatinIME to comply with Android's inclusive language guidance
See https://source.android.com/setup/contribute/respectful-code for reference
Bug: 162536543
Change-Id: I5df9e60ec6caa2e1e3253532c2b59b74adfc1749
Diffstat (limited to 'java/src/com/android/inputmethod')
-rw-r--r-- | java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java b/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java index b40866cc2..941149895 100644 --- a/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java +++ b/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java @@ -222,7 +222,7 @@ public class RichInputMethodSubtype { return noLanguageSubtype; } Log.w(TAG, "Can't find any language with QWERTY subtype"); - Log.w(TAG, "No input method subtype found; returning dummy subtype: " + Log.w(TAG, "No input method subtype found; returning placeholder subtype: " + PLACEHOLDER_NO_LANGUAGE_SUBTYPE); return PLACEHOLDER_NO_LANGUAGE_SUBTYPE; } @@ -243,7 +243,7 @@ public class RichInputMethodSubtype { return emojiSubtype; } Log.w(TAG, "Can't find emoji subtype"); - Log.w(TAG, "No input method subtype found; returning dummy subtype: " + Log.w(TAG, "No input method subtype found; returning placeholder subtype: " + PLACEHOLDER_EMOJI_SUBTYPE); return PLACEHOLDER_EMOJI_SUBTYPE; } |