diff --git a/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java b/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
index b8d1651dca3a3b4157dce7b9da684f91d6c5cb41..a32d76c3016e41600767b05536d79e2b31c36e2b 100644
--- a/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
+++ b/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
@@ -74,7 +74,6 @@ public final class SuggestionSpanUtils {
             return pickedWord;
         }
 
-        boolean hasSuggestionFromMainDictionary = false;
         final ArrayList<String> suggestionsList = CollectionUtils.newArrayList();
         for (int i = 0; i < suggestedWords.size(); ++i) {
             if (suggestionsList.size() >= SuggestionSpan.SUGGESTIONS_MAX_SIZE) {
@@ -84,22 +83,11 @@ public final class SuggestionSpanUtils {
             if (info.mKind == SuggestedWordInfo.KIND_PREDICTION) {
                 continue;
             }
-            if (info.mSourceDict.mDictType == Dictionary.TYPE_MAIN) {
-                hasSuggestionFromMainDictionary = true;
-            }
             final String word = suggestedWords.getWord(i);
             if (!TextUtils.equals(pickedWord, word)) {
                 suggestionsList.add(word.toString());
             }
         }
-        if (!hasSuggestionFromMainDictionary) {
-            // If we don't have any suggestions from the dictionary, it probably looks bad
-            // enough as it is already because suggestions come pretty much only from contacts.
-            // Let's not embed these bad suggestions in the text view so as to avoid using
-            // them with recorrection.
-            return pickedWord;
-        }
-
         final SuggestionSpan suggestionSpan = new SuggestionSpan(context, null /* locale */,
                 suggestionsList.toArray(new String[suggestionsList.size()]), 0 /* flags */,
                 SuggestionSpanPickedNotificationReceiver.class);