diff options
author | 2012-04-03 01:50:08 -0700 | |
---|---|---|
committer | 2012-04-03 01:50:08 -0700 | |
commit | 56dda78d529478b939ffc8ca5d7e8f6998d79af9 (patch) | |
tree | 9a9ca54fca3f2b10779aa9e693e554271e707b0b /java/src/com/android/inputmethod/latin/InputAttributes.java | |
parent | b07939764ac95d3f730bfee618e2c1a5e90d8295 (diff) | |
parent | be55086fd9218bc03ee0ccac1052d96b40d8a979 (diff) | |
download | latinime-56dda78d529478b939ffc8ca5d7e8f6998d79af9.tar.gz latinime-56dda78d529478b939ffc8ca5d7e8f6998d79af9.tar.xz latinime-56dda78d529478b939ffc8ca5d7e8f6998d79af9.zip |
Merge "Cleanup InputTypeCompatUtils to InputTypeUtils"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/InputAttributes.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/InputAttributes.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/InputAttributes.java b/java/src/com/android/inputmethod/latin/InputAttributes.java index 06c70c42c..a6ce04069 100644 --- a/java/src/com/android/inputmethod/latin/InputAttributes.java +++ b/java/src/com/android/inputmethod/latin/InputAttributes.java @@ -20,8 +20,6 @@ import android.text.InputType; import android.util.Log; import android.view.inputmethod.EditorInfo; -import com.android.inputmethod.compat.InputTypeCompatUtils; - /** * Class to hold attributes of the input field. */ @@ -66,9 +64,9 @@ public class InputAttributes { 0 != (inputType & InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE); // Make sure that passwords are not displayed in {@link SuggestionsView}. - if (InputTypeCompatUtils.isPasswordInputType(inputType) - || InputTypeCompatUtils.isVisiblePasswordInputType(inputType) - || InputTypeCompatUtils.isEmailVariation(variation) + if (InputTypeUtils.isPasswordInputType(inputType) + || InputTypeUtils.isVisiblePasswordInputType(inputType) + || InputTypeUtils.isEmailVariation(variation) || InputType.TYPE_TEXT_VARIATION_URI == variation || InputType.TYPE_TEXT_VARIATION_FILTER == variation || flagNoSuggestions |