Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit db6c7815 authored by Tarandeep Singh's avatar Tarandeep Singh
Browse files

Make MULTI_CLIEN_IME_ENABLED non-testable.

This mechanically reverts making MULTI_CLIEN_IME_ENABLED
testable originally introduced in [1].
CTS tests can check for FEATURE_INPUT_METHODS instead.
FEATURE_INPUT_METHODS is false for Android auto and true for
devices that support installable IMEs.

[1] Id7b4dceb2dbfaf3d7ed1084957dd14b04cad0cdf

Bug: 137203665
Test: Manually built and verified that it builds.
Change-Id: I6e430458dd05dec363f67b62416d424c395f2d5a
parent ff0d2890
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -3492,11 +3492,6 @@ package android.view.inputmethod {
    method public boolean isInputMethodPickerShown();
  }

  public class InputMethodSystemProperty {
    ctor public InputMethodSystemProperty();
    field public static final boolean MULTI_CLIENT_IME_ENABLED;
  }

}

package android.view.inspector {
+0 −3
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@
package android.view.inputmethod;

import android.annotation.Nullable;
import android.annotation.TestApi;
import android.content.ComponentName;
import android.os.Build;
import android.os.SystemProperties;
@@ -27,7 +26,6 @@ import android.os.SystemProperties;
 *
 * @hide
 */
@TestApi
public class InputMethodSystemProperty {
    /**
     * System property key for the production use. The value must be either empty or a valid
@@ -78,6 +76,5 @@ public class InputMethodSystemProperty {
     *
     * @hide
     */
    @TestApi
    public static final boolean MULTI_CLIENT_IME_ENABLED = (sMultiClientImeComponentName != null);
}