* commit 'fe4db6a82e3d82b6810c9b6c04d6ab74c79f036a': Fix hackCanUseDictionaryFile.
This commit is contained in:
commit
902fbd9f12
1 changed files with 3 additions and 0 deletions
|
@ -28,6 +28,7 @@ import android.util.Log;
|
|||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.nio.BufferUnderflowException;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.channels.FileChannel;
|
||||
import java.util.ArrayList;
|
||||
|
@ -382,6 +383,8 @@ class BinaryDictionaryGetter {
|
|||
return false;
|
||||
} catch (NumberFormatException e) {
|
||||
return false;
|
||||
} catch (BufferUnderflowException e) {
|
||||
return false;
|
||||
} finally {
|
||||
if (inStream != null) {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue