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

Commit 7b2ec523 authored by Jay Shrauner's avatar Jay Shrauner
Browse files

Rename phoneHasType/emailHasType

Rename phoneHasType/emailHasType to hasPhoneType/hasEmailType.

Bug:24506801
Change-Id: Ic5f01570681f97b79f124b0222b7c17e3b1d583f
parent 6a1c15a6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -170,7 +170,7 @@ public class RawContactReadOnlyEditorView extends BaseRawContactEditorView
                        phoneNumber, phone.getPhoneNormalizedNumber(),
                        GeoUtil.getCurrentCountryIso(getContext()));
                CharSequence phoneType = null;
                if (phone.phoneHasType()) {
                if (phone.hasPhoneType()) {
                    phoneType = Phone.getTypeLabel(
                            res, phone.getPhoneType(), phone.getPhoneLabel());
                }
@@ -192,7 +192,7 @@ public class RawContactReadOnlyEditorView extends BaseRawContactEditorView
                    continue;
                }
                CharSequence emailType = null;
                if (email.emailHasType()) {
                if (email.hasEmailType()) {
                    emailType = Email.getTypeLabel(
                            res, email.getEmailType(), email.getEmailLabel());
                }