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

Commit 17fe49c8 authored by Zixuan Qu's avatar Zixuan Qu
Browse files

InputManagerService: Fix typo in GuardedBy annotation.

Bug: 237537306
Test: m

Change-Id: I0caaf63ec94ab9ddb387b5e9146c00263e10e9c7
parent 2f3f7856
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -273,9 +273,9 @@ public class InputManagerService extends IInputManager.Stub
    // to display id (int). Currently only accessed by InputReader.
    private final Map<String, Integer> mStaticAssociations;
    private final Object mAssociationsLock = new Object();
    @GuardedBy("mAssociationLock")
    @GuardedBy("mAssociationsLock")
    private final Map<String, Integer> mRuntimeAssociations = new ArrayMap<>();
    @GuardedBy("mAssociationLock")
    @GuardedBy("mAssociationsLock")
    private final Map<String, String> mUniqueIdAssociations = new ArrayMap<>();

    // Guards per-display input properties and properties relating to the mouse pointer.