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

Commit ae8a46b1 authored by Yohei Yukawa's avatar Yohei Yukawa
Browse files

Make InputBindResult#accessibilitySessions final

This field was somehow added as a non-final field [1], but nothing
prevents this from being a final field.  Let's make this final to be
consistent with other fields in InputBindResult.

This is a safe refactoring.  There should be no observable behavior
change.

 [1]: I8efdc9886ce33185a2195b741668c12e319ea660
      107b9413

Bug: 234882948
Test: presubmit
Change-Id: I5aef2e6a744f435fd192590673e91cb26cc3b02c
parent 042f16e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -184,7 +184,7 @@ public final class InputBindResult implements Parcelable {
    /**
     * The accessibility services.
     */
    public SparseArray<IAccessibilityInputMethodSession> accessibilitySessions;
    public final SparseArray<IAccessibilityInputMethodSession> accessibilitySessions;

    /**
     * The input channel used to send input events to this IME.