Skip to content
Snippets Groups Projects
Commit 576c753d authored by Jean Chalard's avatar Jean Chalard
Browse files

Fix an obvious bug

This had to be a typo

Change-Id: Id49e44d7667d64b00e883c55c683535398b6bdea
parent b3ded391
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment