diff options
author | 2014-10-21 07:42:26 +0000 | |
---|---|---|
committer | 2014-10-21 07:42:26 +0000 | |
commit | e5e722210e861b680462ed687dedab800094dd5d (patch) | |
tree | bdde1c16d688b9dd65857081215a9fe3ee5cc8f8 /java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java | |
parent | d0604f841d2203465f70bf095f91c1051eb8e3cb (diff) | |
parent | c51b9b5b3f9b9b80d07186691ddfa09502fd4659 (diff) | |
download | latinime-e5e722210e861b680462ed687dedab800094dd5d.tar.gz latinime-e5e722210e861b680462ed687dedab800094dd5d.tar.xz latinime-e5e722210e861b680462ed687dedab800094dd5d.zip |
am c51b9b5b: Merge "Renaming "blacklist" flag to "possibly offensive""
* commit 'c51b9b5b3f9b9b80d07186691ddfa09502fd4659':
Renaming "blacklist" flag to "possibly offensive"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java b/java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java index 7e8e55990..248246232 100644 --- a/java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java +++ b/java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java @@ -63,7 +63,7 @@ public class CombinedFormatUtils { if (wordProperty.mIsNotAWord) { builder.append("," + NOT_A_WORD_TAG + "=true"); } - if (wordProperty.mIsBlacklistEntry) { + if (wordProperty.mIsPossiblyOffensive) { builder.append("," + BLACKLISTED_TAG + "=true"); } builder.append("\n"); |