am 4c7474d5: am c5a29fa8: Revert "Fix exact match profanity"

* commit '4c7474d501f672986770085193aded27d64aaaa4':
  Revert "Fix exact match profanity"
This commit is contained in:
Ken Wakasa 2013-05-15 12:35:30 -07:00 committed by Android Git Automerger
commit 6c97d676eb

View file

@ -164,8 +164,8 @@ int Suggest::outputSuggestions(DicTraverseSession *traverseSession, int *frequen
const bool isPossiblyOffensiveWord = terminalDicNode->getProbability() <= 0;
const bool isExactMatch = terminalDicNode->isExactMatch();
const int outputTypeFlags =
(isPossiblyOffensiveWord ? Dictionary::KIND_FLAG_POSSIBLY_OFFENSIVE : 0)
| (isExactMatch ? Dictionary::KIND_FLAG_EXACT_MATCH : 0);
isPossiblyOffensiveWord ? Dictionary::KIND_FLAG_POSSIBLY_OFFENSIVE : 0
| isExactMatch ? Dictionary::KIND_FLAG_EXACT_MATCH : 0;
// Entries that are blacklisted or do not represent a word should not be output.
const bool isValidWord = !terminalAttributes.isBlacklistedOrNotAWord();