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

Commit 48740cd2 authored by Zixuan Qu's avatar Zixuan Qu Committed by Android (Google) Code Review
Browse files

Merge "Make InputDeviceDescriptors map private in InputController."

parents 5e2e046d c5491982
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;