Split a method for reuse

Change-Id: I9a82e538903f05bedad51bc195866abbd9daf957
This commit is contained in:
Jean Chalard 2012-03-26 16:33:27 +09:00
parent a77bbc64f0
commit 8403611960

View file

@ -353,6 +353,11 @@ public class AndroidSpellCheckerService extends SpellCheckerService
@Override
public boolean onUnbind(final Intent intent) {
closeAllDictionaries();
return false;
}
private void closeAllDictionaries() {
final Map<String, DictionaryPool> oldPools = mDictionaryPools;
mDictionaryPools = Collections.synchronizedMap(new TreeMap<String, DictionaryPool>());
final Map<String, Dictionary> oldUserDictionaries = mUserDictionaries;
@ -378,7 +383,6 @@ public class AndroidSpellCheckerService extends SpellCheckerService
dictToClose.close();
}
}
return false;
}
private DictionaryPool getDictionaryPool(final String locale) {