Allow multiple shortcuts for a personal dictionary word

Bug: 13869301
Change-Id: Icd77a308f85cc16dccffe65a532471c738d6fbc5
This commit is contained in:
Jean Chalard 2014-06-04 18:01:50 +09:00
parent 2660b70f80
commit f8b4524c0e

View file

@ -167,7 +167,9 @@ public class UserDictionaryAddWordContents {
// should not insert, because either A. the word exists with no shortcut, in which
// case the exact same thing we want to insert is already there, or B. the word
// exists with at least one shortcut, in which case it has priority on our word.
if (hasWord(newWord, context)) return CODE_ALREADY_PRESENT;
if (TextUtils.isEmpty(newShortcut) && hasWord(newWord, context)) {
return CODE_ALREADY_PRESENT;
}
// Disallow duplicates. If the same word with no shortcut is defined, remove it; if
// the same word with the same shortcut is defined, remove it; but we don't mind if