Skip to content
Snippets Groups Projects
Commit ae08b27c authored by Jean Chalard's avatar Jean Chalard Committed by Android Git Automerger
Browse files

am 060917ed: [AC9] Resize an array

* commit '060917ed':
  [AC9] Resize an array
parents 3cf85c10 060917ed
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ public final class BinaryDictionary extends Dictionary { ...@@ -54,7 +54,7 @@ public final class BinaryDictionary extends Dictionary {
private final int[] mSpaceIndices = new int[MAX_RESULTS]; private final int[] mSpaceIndices = new int[MAX_RESULTS];
private final int[] mOutputScores = new int[MAX_RESULTS]; private final int[] mOutputScores = new int[MAX_RESULTS];
private final int[] mOutputTypes = new int[MAX_RESULTS]; private final int[] mOutputTypes = new int[MAX_RESULTS];
private final int[] mOutputAutoCommitFirstWordConfidence = new int[1]; // Only one result private final int[] mOutputAutoCommitFirstWordConfidence = new int[MAX_RESULTS];
private final NativeSuggestOptions mNativeSuggestOptions = new NativeSuggestOptions(); private final NativeSuggestOptions mNativeSuggestOptions = new NativeSuggestOptions();
......
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