am 576c753d: Fix an obvious bug
* commit '576c753d25f8a1de396ece59b7b3c9b098d67e95': Fix an obvious bugmain
commit
686014a397
|
@ -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