Fix an obvious bug

This had to be a typo

Change-Id: Id49e44d7667d64b00e883c55c683535398b6bdea
main
Jean Chalard 2013-12-02 20:04:52 +09:00
parent b3ded391e0
commit 576c753d25
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ public class Ver4DictEncoder implements DictEncoder {
@Override @Override
public void setPosition(int position) { 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; mTriePos = position;
} }