Index: ios/chrome/browser/ui/settings/cells/autofill_data_item.mm |
diff --git a/ios/chrome/browser/ui/settings/cells/autofill_data_item.mm b/ios/chrome/browser/ui/settings/cells/autofill_data_item.mm |
index 31b723408af18f8bc1bf86503eb33727d9fb30e8..1f53f45fc67c721af874608ff7d4038f5691da27 100644 |
--- a/ios/chrome/browser/ui/settings/cells/autofill_data_item.mm |
+++ b/ios/chrome/browser/ui/settings/cells/autofill_data_item.mm |
@@ -25,7 +25,6 @@ const CGFloat kVerticalPadding = 16; |
@synthesize text = _text; |
@synthesize leadingDetailText = _leadingDetailText; |
@synthesize trailingDetailText = _trailingDetailText; |
-@synthesize accessoryType = _accessoryType; |
- (instancetype)initWithType:(NSInteger)type { |
self = [super initWithType:type]; |
@@ -42,7 +41,6 @@ const CGFloat kVerticalPadding = 16; |
cell.textLabel.text = self.text; |
cell.leadingDetailTextLabel.text = self.leadingDetailText; |
cell.trailingDetailTextLabel.text = self.trailingDetailText; |
- cell.accessoryType = self.accessoryType; |
} |
@end |
@@ -164,7 +162,6 @@ const CGFloat kVerticalPadding = 16; |
self.textLabel.text = nil; |
self.leadingDetailTextLabel.text = nil; |
self.trailingDetailTextLabel.text = nil; |
- self.accessoryType = MDCCollectionViewCellAccessoryNone; |
} |
#pragma mark - NSObject(Accessibility) |