Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c8f2288 authored by Satoshi Kataoka's avatar Satoshi Kataoka
Browse files

Add onDestroy to PersonalizationDictionarySessionRegister

Bug: 9429906
Change-Id: Ibf8efd7302da2c27ac59e62b0393f1eec03dc136
parent d6ddb96e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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();
+5 −0
Original line number Diff line number Diff line
@@ -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) {
    }
}