Don't kill suggestions with native score < 1

Change-Id: I954856b7fec0b91e19a467f2a87978d49caa639d
main
Jean Chalard 2013-04-22 14:21:43 +09:00
parent 2a9b5447fa
commit f0e579a171
1 changed files with 0 additions and 1 deletions

View File

@ -141,7 +141,6 @@ public final class BinaryDictionary extends Dictionary {
mOutputTypes);
final ArrayList<SuggestedWordInfo> suggestions = CollectionUtils.newArrayList();
for (int j = 0; j < count; ++j) {
if (composerSize > 0 && mOutputScores[j] < 1) break;
final int start = j * MAX_WORD_LENGTH;
int len = 0;
while (len < MAX_WORD_LENGTH && mOutputCodePoints[start + len] != 0) {