Fix an obvious bug
This had to be a typo Change-Id: Id49e44d7667d64b00e883c55c683535398b6bdeamain
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…
Reference in New Issue