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

Commit 02e70cf9 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

Merge "Use HashSet to hold keys in Keyboard"

parents 4a08b2f0 a5f7969f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;

@@ -225,7 +226,7 @@ public class Keyboard {
        public int GRID_WIDTH;
        public int GRID_HEIGHT;

        public final ArrayList<Key> mKeys = new ArrayList<Key>();
        public final HashSet<Key> mKeys = new HashSet<Key>();
        public final ArrayList<Key> mShiftKeys = new ArrayList<Key>();
        public final ArrayList<Key> mAltCodeKeysWhileTyping = new ArrayList<Key>();
        public final KeyboardIconsSet mIconsSet = new KeyboardIconsSet();