Merge "Make InputDeviceDescriptors map private in InputController."

This commit is contained in:
Zixuan Qu
2022-12-07 17:06:50 +00:00
committed by Android (Google) Code Review

View File

@@ -78,9 +78,8 @@ class InputController {
final Object mLock;
/* Token -> file descriptor associations. */
@VisibleForTesting
@GuardedBy("mLock")
final Map<IBinder, InputDeviceDescriptor> mInputDeviceDescriptors = new ArrayMap<>();
private final Map<IBinder, InputDeviceDescriptor> mInputDeviceDescriptors = new ArrayMap<>();
private final Handler mHandler;
private final NativeWrapper mNativeWrapper;