Remove a useless test

If we are not composing a word here, we have already returned

Change-Id: I63281abace777e3658286d4df6781d2cd5a29c33
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 6c89fba..c7a0f49 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1834,9 +1834,6 @@
         } else {
             SuggestedWords previousSuggestions = mSuggestionsView.getSuggestions();
             if (previousSuggestions == mSettingsValues.mSuggestPuncList) {
-                if (!mWordComposer.isComposingWord()) {
-                    return;
-                }
                 previousSuggestions = SuggestedWords.EMPTY;
             }
             final SuggestedWords.Builder obsoleteSuggestionsBuilder = new SuggestedWords.Builder()