Merge "Fix NPE when context.getFilesDir() returns null." into lmp-dev

This commit is contained in:
Keisuke Kuroyanagi 2014-07-28 10:30:26 +00:00 committed by Android (Google) Code Review
commit fb15b768dd

View file

@ -138,6 +138,7 @@ public class PersonalizationHelper {
final File filesDir = context.getFilesDir();
if (filesDir == null) {
Log.e(TAG, "context.getFilesDir() returned null.");
return;
}
if (!FileUtils.deleteFilteredFiles(filesDir, new DictFilter(dictNamePrefix))) {
Log.e(TAG, "Cannot remove all existing dictionary files. filesDir: "