Skip to content
Snippets Groups Projects
Commit 0011ab4b authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi
Browse files

Fix contacts/user dictionary writing.

Bug: 10743878
Change-Id: I5d61b7955ef69a635f994f01cc575fb23fdf942b
parent 9b78241d
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ abstract public class AbstractDictionaryWriter extends Dictionary { ...@@ -58,7 +58,7 @@ abstract public class AbstractDictionaryWriter extends Dictionary {
final File file = new File(mContext.getFilesDir(), fileName); final File file = new File(mContext.getFilesDir(), fileName);
final File tempFile = new File(mContext.getFilesDir(), tempFileName); final File tempFile = new File(mContext.getFilesDir(), tempFileName);
try { try {
final DictEncoder dictEncoder = new Ver3DictEncoder(file); final DictEncoder dictEncoder = new Ver3DictEncoder(tempFile);
writeDictionary(dictEncoder); writeDictionary(dictEncoder);
tempFile.renameTo(file); tempFile.renameTo(file);
} catch (IOException e) { } catch (IOException e) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment