Add onDestroy to PersonalizationDictionarySessionRegister
Bug: 9429906 Change-Id: Ibf8efd7302da2c27ac59e62b0393f1eec03dc136main
parent
d6ddb96ee8
commit
3c8f22880f
|
@ -639,6 +639,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||
ResearchLogger.getInstance().onDestroy();
|
||||
}
|
||||
unregisterReceiver(mDictionaryPackInstallReceiver);
|
||||
PersonalizationDictionarySessionRegister.onDestroy(this);
|
||||
LatinImeLogger.commit();
|
||||
LatinImeLogger.onDestroy();
|
||||
super.onDestroy();
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
|
||||
package com.android.inputmethod.latin.personalization;
|
||||
|
||||
import com.android.inputmethod.latin.amanatto.AmanattoDataUpdater;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.Configuration;
|
||||
|
||||
|
@ -31,4 +33,7 @@ public class PersonalizationDictionarySessionRegister {
|
|||
|
||||
public static void onRemoveData(Context context, String type) {
|
||||
}
|
||||
|
||||
public static void onDestroy(Context context) {
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue