diff options
| author | Treehugger Robot <treehugger-gerrit@google.com> | 2020-08-18 03:08:09 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-08-18 03:08:09 +0000 |
| commit | 2e1b52b1d1b80beac56630a8b06e536861556f2e (patch) | |
| tree | 94a43ae729c439e49b7c2d1efbd752f9261922f0 /core/java/android | |
| parent | 7e3435208a99a92488157f075e9d947f91bf44b2 (diff) | |
| parent | 2662fabd353134de6bff2208d279477f64405033 (diff) | |
Merge "Update InputMethodInfo to comply with Android's inclusive language guidance"
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/view/inputmethod/InputMethodInfo.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/inputmethod/InputMethodInfo.java b/core/java/android/view/inputmethod/InputMethodInfo.java index 34005ac02735..89560812bad1 100644 --- a/core/java/android/view/inputmethod/InputMethodInfo.java +++ b/core/java/android/view/inputmethod/InputMethodInfo.java @@ -283,7 +283,7 @@ public final class InputMethodInfo implements Parcelable { */ public InputMethodInfo(String packageName, String className, CharSequence label, String settingsActivity) { - this(buildDummyResolveInfo(packageName, className, label), false /* isAuxIme */, + this(buildFakeResolveInfo(packageName, className, label), false /* isAuxIme */, settingsActivity, null /* subtypes */, 0 /* isDefaultResId */, false /* forceDefault */, true /* supportsSwitchingToNextInputMethod */, false /* isVrOnly */); @@ -319,7 +319,7 @@ public final class InputMethodInfo implements Parcelable { mIsVrOnly = isVrOnly; } - private static ResolveInfo buildDummyResolveInfo(String packageName, String className, + private static ResolveInfo buildFakeResolveInfo(String packageName, String className, CharSequence label) { ResolveInfo ri = new ResolveInfo(); ServiceInfo si = new ServiceInfo(); |
