Index: ios/chrome/browser/payments/cells/autofill_profile_item.mm |
diff --git a/ios/chrome/browser/payments/cells/autofill_profile_item.mm b/ios/chrome/browser/payments/cells/autofill_profile_item.mm |
index 4e82bfaa24359e8c6ac09c4eb4b73c495b98ed54..bae91ae85f77717af05238d1c39efd9a6a012123 100644 |
--- a/ios/chrome/browser/payments/cells/autofill_profile_item.mm |
+++ b/ios/chrome/browser/payments/cells/autofill_profile_item.mm |
@@ -30,7 +30,6 @@ const CGFloat kVerticalSpacingBetweenLabels = 8; |
@synthesize phoneNumber = _phoneNumber; |
@synthesize email = _email; |
@synthesize notification = _notification; |
-@synthesize accessoryType = _accessoryType; |
#pragma mark CollectionViewItem |
@@ -44,7 +43,6 @@ const CGFloat kVerticalSpacingBetweenLabels = 8; |
- (void)configureCell:(AutofillProfileCell*)cell { |
[super configureCell:cell]; |
- cell.accessoryType = self.accessoryType; |
cell.nameLabel.text = self.name; |
cell.addressLabel.text = self.address; |
cell.phoneNumberLabel.text = self.phoneNumber; |
@@ -181,7 +179,6 @@ const CGFloat kVerticalSpacingBetweenLabels = 8; |
self.phoneNumberLabel.text = nil; |
self.emailLabel.text = nil; |
self.notificationLabel.text = nil; |
- self.accessoryType = MDCCollectionViewCellAccessoryNone; |
} |
#pragma mark - NSObject(Accessibility) |