From 63d676e72617511819294b6abcce5f96e153b85c Mon Sep 17 00:00:00 2001 From: Ming-Shin Lu Date: Fri, 30 Sep 2022 10:44:12 +0800 Subject: [PATCH] Make InputMethodDeviceConfigs as package-private Bug: 240701729 Test: build Change-Id: I4e94467227514c07a499e1522b8b4f4158499ace --- .../android/server/inputmethod/InputMethodDeviceConfigs.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/inputmethod/InputMethodDeviceConfigs.java b/services/core/java/com/android/server/inputmethod/InputMethodDeviceConfigs.java index 9d5393f38dba1..2160b652317a5 100644 --- a/services/core/java/com/android/server/inputmethod/InputMethodDeviceConfigs.java +++ b/services/core/java/com/android/server/inputmethod/InputMethodDeviceConfigs.java @@ -25,7 +25,7 @@ import android.provider.DeviceConfig; * Class for the device-level configuration related to the input method manager * platform features in {@link DeviceConfig}. */ -public final class InputMethodDeviceConfigs { +final class InputMethodDeviceConfigs { private boolean mHideImeWhenNoEditorFocus; private final DeviceConfig.OnPropertiesChangedListener mDeviceConfigChangedListener;