Ignore the broken file.

bug: 7249561

Change-Id: If001bf75ef12b4d342a77e54706c7fed90c89afb
This commit is contained in:
Yuichiro Hanada 2012-09-28 14:14:31 +09:00
parent a36c595353
commit 7a7d117aa7

View File

@ -180,12 +180,14 @@ public final class UserHistoryDictIOUtils {
try {
BinaryDictIOUtils.readUnigramsAndBigramsBinary(buffer, unigrams, frequencies,
bigrams);
addWordsFromWordMap(unigrams, frequencies, bigrams, dict);
} catch (IOException e) {
Log.e(TAG, "IO exception while reading file: " + e);
} catch (UnsupportedFormatException e) {
Log.e(TAG, "Unsupported format: " + e);
} catch (ArrayIndexOutOfBoundsException e) {
Log.e(TAG, "ArrayIndexOutOfBoundsException while reading file: " + e);
}
addWordsFromWordMap(unigrams, frequencies, bigrams, dict);
}
/**