Remove an unnecessary null check

Bug: 9497893
Change-Id: Ib363fc4b93a53c343e0e4cd4766038fee8324850
diff --git a/src/com/android/ex/chips/RecipientEditTextView.java b/src/com/android/ex/chips/RecipientEditTextView.java
index aaf4a05..ff1e720 100644
--- a/src/com/android/ex/chips/RecipientEditTextView.java
+++ b/src/com/android/ex/chips/RecipientEditTextView.java
@@ -2493,10 +2493,6 @@
                 }
             }
             final BaseRecipientAdapter adapter = (BaseRecipientAdapter) getAdapter();
-            if (adapter == null) {
-                Log.wtf(TAG, "My assumption that this was fixed is wrong.");
-                return null;
-            }
             RecipientAlternatesAdapter.getMatchingRecipients(getContext(), addresses,
                     adapter.getAccount(), new RecipientMatchCallback() {
                         @Override