Skip to content

Commit 44690ff

Browse files
author
Mark Rogers
committed
Implemented whitespace styling in added file.
1 parent 1b59580 commit 44690ff

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: CardIOCardholderNameTextFieldDelegate.m

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
@implementation CardIOCardholderNameTextFieldDelegate
99

1010
-(id) init {
11-
if ((self = [super init])) {
12-
// Globalization: alphanumeric, space, hyphen are all definitely okay;
13-
// there's no compelling reason for us to get fussy here.
14-
self.numbersOnly = NO;
15-
self.maxLength = 175; // PayPal REST APIs accept max of 175 chars for cardholder name
16-
}
17-
return self;
11+
if ((self = [super init])) {
12+
// Globalization: alphanumeric, space, hyphen are all definitely okay;
13+
// there's no compelling reason for us to get fussy here.
14+
self.numbersOnly = NO;
15+
self.maxLength = 175; // PayPal REST APIs accept max of 175 chars for cardholder name
16+
}
17+
return self;
1818
}
1919

2020
+(BOOL)isValidCardholderName:(NSString*)cardholderName {
21-
return [cardholderName length] > 0;
21+
return [cardholderName length] > 0;
2222
}
2323

2424
@end

0 commit comments

Comments
 (0)