Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: ios/chrome/browser/ui/payments/credit_card_edit_view_controller.mm

Issue 2761263003: Allow CollectionViewModel/Controller queries without SectionIdentifier (Closed)
Patch Set: Cleanup Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/ui/payments/credit_card_edit_view_controller.mm
diff --git a/ios/chrome/browser/ui/payments/credit_card_edit_view_controller.mm b/ios/chrome/browser/ui/payments/credit_card_edit_view_controller.mm
index 3ab54a8904d1df3331bc6b415749017cc002d1fb..072413d8e13da196e71cc26c2118159635ba8799 100644
--- a/ios/chrome/browser/ui/payments/credit_card_edit_view_controller.mm
+++ b/ios/chrome/browser/ui/payments/credit_card_edit_view_controller.mm
@@ -242,11 +242,8 @@ typedef NS_ENUM(NSInteger, ItemType) {
withString:newText];
item.cardTypeIcon = [_dataSource cardTypeIconFromCardNumber:updatedText];
- NSInteger sectionIdentifier = [self.collectionViewModel
- sectionIdentifierForSection:[indexPath section]];
// Update the cell.
- [self reconfigureCellsForItems:@[ item ]
- inSectionWithIdentifier:sectionIdentifier];
+ [self reconfigureCellsForItems:@[ item ]];
}
return YES;

Powered by Google App Engine
This is Rietveld 408576698