Merge "Remove a useless variable."
diff --git a/java/src/com/android/inputmethod/latin/DictionaryPackInstallBroadcastReceiver.java b/java/src/com/android/inputmethod/latin/DictionaryPackInstallBroadcastReceiver.java
index 7a3bcd8..c786462 100644
--- a/java/src/com/android/inputmethod/latin/DictionaryPackInstallBroadcastReceiver.java
+++ b/java/src/com/android/inputmethod/latin/DictionaryPackInstallBroadcastReceiver.java
@@ -56,7 +56,6 @@
             if (null == providers) return; // No providers : it is not a dictionary.
 
             // Search for some dictionary pack in the just-installed package. If found, reread.
-            boolean found = false;
             for (ProviderInfo info : providers) {
                 if (BinaryDictionary.DICTIONARY_PACK_AUTHORITY.equals(info.authority)) {
                     mService.resetSuggestMainDict();