am 576c753d: Fix an obvious bug

* commit '576c753d25f8a1de396ece59b7b3c9b098d67e95':
  Fix an obvious bug
main
Jean Chalard 2013-12-02 03:09:57 -08:00 committed by Android Git Automerger
commit 686014a397
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}