diff options
author | 2015-02-26 03:33:06 +0000 | |
---|---|---|
committer | 2015-02-26 03:33:08 +0000 | |
commit | 48ba1ea19f7e18a24813a9301ed620612c2e53d7 (patch) | |
tree | b907c688f93fc8b1890396fe163d75ee2d439736 /java/src/com | |
parent | 487e038ff329b6099ff5343fb2d7bdc60a6fd699 (diff) | |
parent | 20fb37afee70e1f4fa1d210bf29d9fda689f4ad7 (diff) | |
download | latinime-48ba1ea19f7e18a24813a9301ed620612c2e53d7.tar.gz latinime-48ba1ea19f7e18a24813a9301ed620612c2e53d7.tar.xz latinime-48ba1ea19f7e18a24813a9301ed620612c2e53d7.zip |
Merge "Make DictionaryFactory.killDictionary public"
Diffstat (limited to 'java/src/com')
-rw-r--r-- | java/src/com/android/inputmethod/latin/DictionaryFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/DictionaryFactory.java b/java/src/com/android/inputmethod/latin/DictionaryFactory.java index 781ab06c5..49608d830 100644 --- a/java/src/com/android/inputmethod/latin/DictionaryFactory.java +++ b/java/src/com/android/inputmethod/latin/DictionaryFactory.java @@ -80,7 +80,7 @@ public final class DictionaryFactory { * @param context The context to contact the dictionary provider, if possible. * @param f A file address to the dictionary to kill. */ - private static void killDictionary(final Context context, final AssetFileAddress f) { + public static void killDictionary(final Context context, final AssetFileAddress f) { if (f.pointsToPhysicalFile()) { f.deleteUnderlyingFile(); // Warn the dictionary provider if the dictionary came from there. |