diff options
author | 2014-10-21 07:39:18 +0000 | |
---|---|---|
committer | 2014-10-21 07:39:18 +0000 | |
commit | c51b9b5b3f9b9b80d07186691ddfa09502fd4659 (patch) | |
tree | 6ec9485b9d5a9a8b6e4ee8622998131800d17a91 /java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java | |
parent | 2b087f9a12d8bae2bd3adc659684df615e1c96db (diff) | |
parent | 05172bf1a5693c2e108e91436b98ecd35d2dadad (diff) | |
download | latinime-c51b9b5b3f9b9b80d07186691ddfa09502fd4659.tar.gz latinime-c51b9b5b3f9b9b80d07186691ddfa09502fd4659.tar.xz latinime-c51b9b5b3f9b9b80d07186691ddfa09502fd4659.zip |
Merge "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"); |