diff options
author | 2015-02-26 03:37:56 +0000 | |
---|---|---|
committer | 2015-02-26 03:37:56 +0000 | |
commit | d11e4cd964a0be64efd415e6f5f2ca1c14d435de (patch) | |
tree | d21538488c22fb1aff15c2ad9cbf9a7bb2517c9a /java/src | |
parent | 86ae0ffe9d1a2f46504b0636ea64c04bb615ac29 (diff) | |
parent | 48ba1ea19f7e18a24813a9301ed620612c2e53d7 (diff) | |
download | latinime-d11e4cd964a0be64efd415e6f5f2ca1c14d435de.tar.gz latinime-d11e4cd964a0be64efd415e6f5f2ca1c14d435de.tar.xz latinime-d11e4cd964a0be64efd415e6f5f2ca1c14d435de.zip |
am 48ba1ea1: Merge "Make DictionaryFactory.killDictionary public"
* commit '48ba1ea19f7e18a24813a9301ed620612c2e53d7':
Make DictionaryFactory.killDictionary public
Diffstat (limited to 'java/src')
-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. |