From 20fb37afee70e1f4fa1d210bf29d9fda689f4ad7 Mon Sep 17 00:00:00 2001 From: Mohammadinamul Sheik Date: Wed, 25 Feb 2015 17:53:35 -0800 Subject: [PATCH] Make DictionaryFactory.killDictionary public Change-Id: I9a0733392651714b3ba232cdb805565a5238eb93 --- java/src/com/android/inputmethod/latin/DictionaryFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.