diff --git a/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java b/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
index d97989d9c030c26ec4abf9df8b956e3a8515782a..25afef1e674f6508cb9af0f275ad9d8c68313b96 100644
--- a/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
+++ b/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
@@ -131,16 +131,11 @@ public class SuggestionSpanUtils {
                 sameAsTyped = true;
             }
         }
-        // TODO: Share the implementation for checking typed word validity between the IME
-        // and the spell checker.
-        final int flag = (sameAsTyped && !suggestedWords.mTypedWordValid)
-                ? (OBJ_FLAG_EASY_CORRECT | OBJ_FLAG_MISSPELLED)
-                : 0;
 
         // TODO: We should avoid adding suggestion span candidates that came from the bigram
         // prediction.
         final Object[] args =
-                { context, null, suggestionsList.toArray(new String[suggestionsList.size()]), flag,
+                { context, null, suggestionsList.toArray(new String[suggestionsList.size()]), 0,
                         (Class<?>) SuggestionSpanPickedNotificationReceiver.class };
         final Object ss = CompatUtils.newInstance(CONSTRUCTOR_SuggestionSpan, args);
         if (ss == null) {