Merge "Don't log stack trace for missing LM."
commit
f267e84548
|
@ -95,7 +95,7 @@ final public class BinaryDictionaryGetter {
|
||||||
try {
|
try {
|
||||||
afd = context.getResources().openRawResourceFd(fallbackResId);
|
afd = context.getResources().openRawResourceFd(fallbackResId);
|
||||||
} catch (RuntimeException e) {
|
} catch (RuntimeException e) {
|
||||||
Log.e(TAG, "Resource not found: " + fallbackResId, e);
|
Log.e(TAG, "Resource not found: " + fallbackResId);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if (afd == null) {
|
if (afd == null) {
|
||||||
|
|
Loading…
Reference in New Issue