Stop using raw e-mail addresses as names in contacts dict.
Bug: 4590281 Change-Id: I37016dd066efa1463077c67e05218148cbb67df4main
parent
601b72cb1e
commit
1ea78d92e6
|
@ -114,7 +114,7 @@ public class ContactsDictionary extends ExpandableDictionary {
|
||||||
while (!cursor.isAfterLast()) {
|
while (!cursor.isAfterLast()) {
|
||||||
String name = cursor.getString(INDEX_NAME);
|
String name = cursor.getString(INDEX_NAME);
|
||||||
|
|
||||||
if (name != null) {
|
if (name != null && -1 == name.indexOf('@')) {
|
||||||
int len = name.length();
|
int len = name.length();
|
||||||
String prevWord = null;
|
String prevWord = null;
|
||||||
|
|
||||||
|
@ -143,8 +143,6 @@ public class ContactsDictionary extends ExpandableDictionary {
|
||||||
if (wordLen < maxWordLength && wordLen > 1) {
|
if (wordLen < maxWordLength && wordLen > 1) {
|
||||||
super.addWord(word, FREQUENCY_FOR_CONTACTS);
|
super.addWord(word, FREQUENCY_FOR_CONTACTS);
|
||||||
if (!TextUtils.isEmpty(prevWord)) {
|
if (!TextUtils.isEmpty(prevWord)) {
|
||||||
// TODO Do not add email address
|
|
||||||
// Not so critical
|
|
||||||
super.setBigram(prevWord, word,
|
super.setBigram(prevWord, word,
|
||||||
FREQUENCY_FOR_CONTACTS_BIGRAM);
|
FREQUENCY_FOR_CONTACTS_BIGRAM);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue