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

Commit 69bf6483 authored by Nikolas Havrikov's avatar Nikolas Havrikov
Browse files

Make members final in IMMS where appropriate

Bug: 205676419
Test: make
Change-Id: I2a84254f5ce59f3e6ca230e392742f52c0e96432
parent 0f69d73b
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -373,8 +373,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
    private NotificationManager mNotificationManager;
    KeyguardManager mKeyguardManager;
    private @Nullable StatusBarManagerService mStatusBar;
    private Notification.Builder mImeSwitcherNotification;
    private PendingIntent mImeSwitchPendingIntent;
    private final Notification.Builder mImeSwitcherNotification;
    private final PendingIntent mImeSwitchPendingIntent;
    private boolean mShowOngoingImeSwitcherForPhones;
    private boolean mNotificationShown;

@@ -647,7 +647,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
     */
    boolean mIsInteractive = true;

    private IPlatformCompat mPlatformCompat;
    private final IPlatformCompat mPlatformCompat;

    int mBackDisposition = InputMethodService.BACK_DISPOSITION_DEFAULT;

@@ -757,7 +757,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
    private final WeakHashMap<IBinder, IBinder> mImeTargetWindowMap = new WeakHashMap<>();

    private static final class SoftInputShowHideHistory {
        private Entry[] mEntries = new Entry[16];
        private final Entry[] mEntries = new Entry[16];
        private int mNextIndex = 0;
        private static final AtomicInteger sSequenceNumber = new AtomicInteger(0);

@@ -1511,7 +1511,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
    private UserSwitchHandlerTask mUserSwitchHandlerTask;

    public static final class Lifecycle extends SystemService {
        private InputMethodManagerService mService;
        private final InputMethodManagerService mService;

        public Lifecycle(Context context) {
            super(context);