| Index: ios/chrome/browser/payments/cells/price_item.mm
|
| diff --git a/ios/chrome/browser/payments/cells/price_item.mm b/ios/chrome/browser/payments/cells/price_item.mm
|
| index eced29171febde93ee520eac988a4910967ac4c4..c5ac421a941bb950f3c3efc1d8d26157eff7a669 100644
|
| --- a/ios/chrome/browser/payments/cells/price_item.mm
|
| +++ b/ios/chrome/browser/payments/cells/price_item.mm
|
| @@ -25,7 +25,6 @@ const CGFloat kMinWidthRatio = 0.5f;
|
|
|
| @implementation PriceItem
|
|
|
| -@synthesize accessoryType = _accessoryType;
|
| @synthesize item = _item;
|
| @synthesize notification = _notification;
|
| @synthesize price = _price;
|
| @@ -42,7 +41,6 @@ const CGFloat kMinWidthRatio = 0.5f;
|
|
|
| - (void)configureCell:(PriceCell*)cell {
|
| [super configureCell:cell];
|
| - cell.accessoryType = self.accessoryType;
|
| cell.itemLabel.text = self.item;
|
| cell.notificationLabel.text = self.notification;
|
| cell.priceLabel.text = self.price;
|
| @@ -165,7 +163,6 @@ const CGFloat kMinWidthRatio = 0.5f;
|
|
|
| - (void)prepareForReuse {
|
| [super prepareForReuse];
|
| - self.accessoryType = MDCCollectionViewCellAccessoryNone;
|
| self.itemLabel.text = nil;
|
| self.notificationLabel.text = nil;
|
| self.priceLabel.text = nil;
|
|
|