Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d694afb4 authored by Marcus Hagerott's avatar Marcus Hagerott Committed by Android (Google) Code Review
Browse files

Merge "Return null for contacts local account"

parents 71a76f44 56b28d4a
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -2952,10 +2952,7 @@ public final class ContactsContract {
         */
        @Nullable
        public static String getLocalAccountName(@NonNull Context context) {
            //  config_rawContactsLocalAccountName is defined in
            //  platform/frameworks/base/core/res/res/values/config.xml
            return TextUtils.nullIfEmpty(context.getString(
                    com.android.internal.R.string.config_rawContactsLocalAccountName));
            return null;
        }

        /**
@@ -2971,10 +2968,7 @@ public final class ContactsContract {
         */
        @Nullable
        public static String getLocalAccountType(@NonNull Context context) {
            //  config_rawContactsLocalAccountType is defined in
            //  platform/frameworks/base/core/res/res/values/config.xml
            return TextUtils.nullIfEmpty(context.getString(
                    com.android.internal.R.string.config_rawContactsLocalAccountType));
            return null;
        }

        /**