Revert "Add Extra Parameter for Intent"

This reverts commit 5da78b7aa40215f0b5f916f02f31dde4a7f679fb.

Reason for revert: The original change causing this crash has been reverted. Thus, this no longer required. ag/22339503
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:ceed19f8b051249d3c0e3a6a09a5c34c92795655)
Merged-In: I5b712c1485db437a39a378d7132b85c599f171e8
Change-Id: I5b712c1485db437a39a378d7132b85c599f171e8
diff --git a/src/com/android/contacts/util/ImplicitIntentsUtil.java b/src/com/android/contacts/util/ImplicitIntentsUtil.java
index e1377e0..a1ab896 100644
--- a/src/com/android/contacts/util/ImplicitIntentsUtil.java
+++ b/src/com/android/contacts/util/ImplicitIntentsUtil.java
@@ -30,8 +30,6 @@
 import android.provider.Settings;
 import android.text.TextUtils;
 
-import androidx.core.os.BuildCompat;
-
 import com.android.contacts.logging.ScreenEvent.ScreenType;
 import com.android.contacts.model.account.GoogleAccountType;
 import com.android.contacts.quickcontact.QuickContactActivity;
@@ -142,9 +140,6 @@
     public static Intent getIntentForAddingAccount() {
         final Intent intent = new Intent(Settings.ACTION_SYNC_SETTINGS);
         intent.setFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
-        if (BuildCompat.isAtLeastU()) {
-            intent.setData(Uri.fromParts("package", "com.android.contacts", null));
-        }
         intent.putExtra(Settings.EXTRA_AUTHORITIES,
                 new String[]{ContactsContract.AUTHORITY});
         return intent;