From e1f5b3caf613bdba92c6d0d43ac4904cf6b4bb7a Mon Sep 17 00:00:00 2001 From: Bryant Luk Date: Mon, 12 Sep 2016 10:48:36 -0500 Subject: [PATCH] Remove incorrect warning about suppressScanConfirmation blocking collectExpiry - See https://github.com/card-io/card.io-iOS-SDK/issues/217 - Thanks to kballard for reporting the issue. --- Classes/CardIOPaymentViewController.m | 3 --- 1 file changed, 3 deletions(-) diff --git a/Classes/CardIOPaymentViewController.m b/Classes/CardIOPaymentViewController.m index 8d77a72d..d1a98260 100644 --- a/Classes/CardIOPaymentViewController.m +++ b/Classes/CardIOPaymentViewController.m @@ -133,9 +133,6 @@ - (void)viewWillAppear:(BOOL)animated { // Write console message for confused developers who have given us confusing directives if (self.suppressScanConfirmation && (self.collectExpiry || self.collectCVV || self.collectPostalCode || self.collectCardholderName)) { NSMutableString *collect = [NSMutableString string]; - if (self.collectExpiry) { - [collect appendString:@"collectExpiry"]; - } if (self.collectCVV) { if ([collect length]) { [collect appendString:@"/"];