mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Fix an obvious bug
This had to be a typo Change-Id: Id49e44d7667d64b00e883c55c683535398b6bdea
This commit is contained in:
parent
b3ded391e0
commit
576c753d25
@ -303,7 +303,7 @@ public class Ver4DictEncoder implements DictEncoder {
|
||||
|
||||
@Override
|
||||
public void setPosition(int position) {
|
||||
if (mTrieBuf == null || position < 0 || position >- mTrieBuf.length) return;
|
||||
if (mTrieBuf == null || position < 0 || position > mTrieBuf.length) return;
|
||||
mTriePos = position;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user