Reinstate putting shortcut-only entries in the dictionary
Not sure at which point this functionality got lost, but anyway, it's back Bug: 6906525 Change-Id: Ie87baa0dacdcee90e029917ca866099593d5d048
This commit is contained in:
parent
1d8103ea57
commit
565fdeee7d
1 changed files with 4 additions and 0 deletions
|
@ -90,6 +90,10 @@ public class XmlDictInputOutput {
|
|||
|
||||
public FusionDictionary getFinalDictionary() {
|
||||
final FusionDictionary dict = mDictionary;
|
||||
for (final String shortcutOnly : mShortcutsMap.keySet()) {
|
||||
if (dict.hasWord(shortcutOnly)) continue;
|
||||
dict.add(shortcutOnly, 0, mShortcutsMap.get(shortcutOnly));
|
||||
}
|
||||
mDictionary = null;
|
||||
mShortcutsMap.clear();
|
||||
mWord = "";
|
||||
|
|
Loading…
Reference in a new issue