Skip to content

Commit 77fcba6

Browse files
committed
Use nil not NULL
1 parent 4d78dc5 commit 77fcba6

File tree

5 files changed

+78
-79
lines changed

5 files changed

+78
-79
lines changed

Stripe.xcodeproj/project.pbxproj

+2-4
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
11C74B9B164043050071C2CA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
9797
11C74B9F164043050071C2CA /* Stripe-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Stripe-Prefix.pch"; sourceTree = "<group>"; };
9898
11C74BA0164043050071C2CA /* Stripe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Stripe.h; sourceTree = "<group>"; };
99-
11C74BA1164043050071C2CA /* Stripe.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Stripe.m; sourceTree = "<group>"; };
99+
11C74BA1164043050071C2CA /* Stripe.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = Stripe.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
100100
11C74BA9164043050071C2CA /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
101101
11C74BAB164043050071C2CA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
102102
11C74BB3164043050071C2CA /* StripeTest-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "StripeTest-Info.plist"; sourceTree = "<group>"; };
@@ -114,7 +114,7 @@
114114
11E1F65A1651585F00B49816 /* StripeTest-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "StripeTest-Prefix.pch"; sourceTree = "<group>"; };
115115
11E1F663165158D300B49816 /* OSXTest.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OSXTest.octest; sourceTree = BUILT_PRODUCTS_DIR; };
116116
11EE8254164786A40039CDD4 /* STPCardTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = STPCardTest.h; sourceTree = "<group>"; };
117-
11EE8255164786A40039CDD4 /* STPCardTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = STPCardTest.m; sourceTree = "<group>"; };
117+
11EE8255164786A40039CDD4 /* STPCardTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = STPCardTest.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
118118
11EE825716478A440039CDD4 /* STPToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = STPToken.h; sourceTree = "<group>"; };
119119
11EE825816478A440039CDD4 /* STPToken.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = STPToken.m; sourceTree = "<group>"; };
120120
11F5800D1656C0CC0036F21E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
@@ -235,7 +235,6 @@
235235
11EE825716478A440039CDD4 /* STPToken.h */,
236236
11EE825816478A440039CDD4 /* STPToken.m */,
237237
);
238-
name = Stripe;
239238
path = Stripe;
240239
sourceTree = "<group>";
241240
};
@@ -258,7 +257,6 @@
258257
112D5AEE164DAD2D0053BB76 /* STPTokenTest.h */,
259258
112D5AEF164DAD2D0053BB76 /* STPTokenTest.m */,
260259
);
261-
name = StripeTest;
262260
path = StripeTest;
263261
sourceTree = "<group>";
264262
};

Stripe/STPCard.m

+13-12
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ + (BOOL)isLuhnValidString:(NSString *)number
4545
{
4646
NSString *digit = [number substringWithRange:NSMakeRange(index, 1)];
4747
NSNumber *digitNumber = [numberFormatter numberFromString:digit];
48-
if (digitNumber == NULL)
48+
if (digitNumber == nil)
4949
return NO;
5050
NSInteger digitInteger = [digitNumber intValue];
5151
isOdd = !isOdd;
@@ -96,7 +96,7 @@ + (NSInteger)currentYear
9696

9797
+ (BOOL)handleValidationErrorForParameter:(NSString *)parameter error:(NSError **)outError
9898
{
99-
if (outError != NULL)
99+
if (outError != nil)
100100
{
101101
if ([parameter isEqualToString:@"number"])
102102
*outError = [self createErrorWithMessage:STPCardErrorInvalidNumberUserMessage
@@ -183,7 +183,7 @@ - (NSString *)last4
183183
else if ([self number])
184184
return [number substringFromIndex:([number length] - 4)];
185185
else
186-
return NULL;
186+
return nil;
187187
}
188188

189189
- (NSString *)type
@@ -215,16 +215,16 @@ - (NSString *)type
215215
return @"Unknown";
216216
}
217217
else
218-
return NULL;
218+
return nil;
219219
}
220220

221221
- (BOOL)validateNumber:(id *)ioValue error:(NSError **)outError {
222-
if (*ioValue == NULL)
222+
if (*ioValue == nil)
223223
{
224224
return [STPCard handleValidationErrorForParameter:@"number" error:outError];
225225
}
226226

227-
NSError *regexError = NULL;
227+
NSError *regexError = nil;
228228
NSString *ioValueString = (NSString *)*ioValue;
229229
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[\\s+|-]"
230230
options:NSRegularExpressionCaseInsensitive
@@ -241,13 +241,13 @@ - (BOOL)validateNumber:(id *)ioValue error:(NSError **)outError {
241241

242242
- (BOOL)validateCvc:(id *)ioValue error:(NSError **)outError
243243
{
244-
if (*ioValue == NULL)
244+
if (*ioValue == nil)
245245
{
246246
return [STPCard handleValidationErrorForParameter:@"number" error:outError];
247247
}
248248
NSString *ioValueString = [(NSString *)*ioValue stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
249249
NSString *cardType = [self type];
250-
BOOL validLength = ((cardType == NULL && [ioValueString length] >= 3 && [ioValueString length] <= 4) ||
250+
BOOL validLength = ((cardType == nil && [ioValueString length] >= 3 && [ioValueString length] <= 4) ||
251251
([cardType isEqualToString:@"American Express"] && [ioValueString length] == 4) ||
252252
(![cardType isEqualToString:@"American Express"] && [ioValueString length] == 3));
253253

@@ -261,7 +261,7 @@ - (BOOL)validateCvc:(id *)ioValue error:(NSError **)outError
261261

262262
- (BOOL)validateExpMonth:(id *)ioValue error:(NSError **)outError
263263
{
264-
if (*ioValue == NULL)
264+
if (*ioValue == nil)
265265
{
266266
return [STPCard handleValidationErrorForParameter:@"expMonth" error:outError];
267267
}
@@ -286,10 +286,11 @@ - (BOOL)validateExpMonth:(id *)ioValue error:(NSError **)outError
286286

287287
- (BOOL)validateExpYear:(id *)ioValue error:(NSError **)outError
288288
{
289-
if (*ioValue == NULL)
289+
if (*ioValue == nil)
290290
{
291291
return [STPCard handleValidationErrorForParameter:@"expYear" error:outError];
292292
}
293+
293294
NSString *ioValueString = [(NSString *)*ioValue stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
294295
NSInteger expYearInt = [ioValueString integerValue];
295296

@@ -301,8 +302,8 @@ - (BOOL)validateExpYear:(id *)ioValue error:(NSError **)outError
301302
{
302303
return [STPCard handleValidationErrorForParameter:@"expMonth" error:outError];
303304
}
305+
304306
return YES;
305-
306307
}
307308

308309
- (BOOL)validateCardReturningError:(NSError **)outError;
@@ -317,6 +318,6 @@ - (BOOL)validateCardReturningError:(NSError **)outError;
317318
return [self validateNumber:&numberRef error:outError] &&
318319
[self validateExpYear:&expYearRef error:outError] &&
319320
[self validateExpMonth:&expMonthRef error:outError] &&
320-
(cvcRef == NULL || [self validateCvc:&cvcRef error:outError]);
321+
(cvcRef == nil || [self validateCvc:&cvcRef error:outError]);
321322
}
322323
@end

Stripe/Stripe.m

+14-14
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ + (void)handleTokenResponse:(NSURLResponse *)response body:(NSData *)body error:
5151
if (requestError)
5252
{
5353
// If this is an error that Stripe returned, let's handle it as a StripeDomain error
54-
NSDictionary *jsonDictionary = NULL;
55-
if (body && (jsonDictionary = [self dictionaryFromJSONData:body error:NULL]) && [jsonDictionary valueForKey:@"error"] != NULL)
54+
NSDictionary *jsonDictionary = nil;
55+
if (body && (jsonDictionary = [self dictionaryFromJSONData:body error:nil]) && [jsonDictionary valueForKey:@"error"] != nil)
5656
{
5757
handler(nil, [self errorFromStripeResponse:jsonDictionary]);
5858
}
@@ -65,7 +65,7 @@ + (void)handleTokenResponse:(NSURLResponse *)response body:(NSData *)body error:
6565
NSError *parseError;
6666
NSDictionary *jsonDictionary = [self dictionaryFromJSONData:body error:&parseError];
6767

68-
if (jsonDictionary == NULL)
68+
if (jsonDictionary == nil)
6969
handler(nil, parseError);
7070
else if ([(NSHTTPURLResponse *)response statusCode] == 200)
7171
handler([[STPToken alloc] initWithAttributeDictionary:[self camelCasedResponseFromStripeResponse:jsonDictionary]], nil);
@@ -76,9 +76,9 @@ + (void)handleTokenResponse:(NSURLResponse *)response body:(NSData *)body error:
7676

7777
+ (NSDictionary *)dictionaryFromJSONData:(NSData *)data error:(NSError **)outError
7878
{
79-
NSDictionary *jsonDictionary = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];
79+
NSDictionary *jsonDictionary = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
8080

81-
if (jsonDictionary == NULL)
81+
if (jsonDictionary == nil)
8282
{
8383
NSDictionary *userInfoDict = @{ NSLocalizedDescriptionKey : STPUnexpectedError,
8484
STPErrorMessageKey : [NSString stringWithFormat:@"The response from Stripe failed to get parsed into valid JSON."]
@@ -89,7 +89,7 @@ + (NSDictionary *)dictionaryFromJSONData:(NSData *)data error:(NSError **)outErr
8989
code:STPAPIError
9090
userInfo:userInfoDict];
9191
}
92-
return NULL;
92+
return nil;
9393
}
9494
return jsonDictionary;
9595
}
@@ -109,7 +109,7 @@ + (NSDictionary *)camelCasedResponseFromStripeResponse:(NSDictionary *)jsonDicti
109109

110110
+ (NSString *)camelCaseFromUnderscoredString:(NSString *)string
111111
{
112-
if (string == NULL || [string isEqualToString:@""])
112+
if (string == nil || [string isEqualToString:@""])
113113
return @"";
114114

115115
NSMutableString *output = [NSMutableString string];
@@ -207,12 +207,12 @@ + (NSError *)errorFromStripeResponse:(NSDictionary *)jsonDictionary
207207
NSString *type = [errorDictionary valueForKey:@"type"];
208208
NSString *devMessage = [errorDictionary valueForKey:@"message"];
209209
NSString *parameter = [errorDictionary valueForKey:@"param"];
210-
NSString *userMessage = NULL;
211-
NSString *cardErrorCode = NULL;
210+
NSString *userMessage = nil;
211+
NSString *cardErrorCode = nil;
212212
NSInteger code = 0;
213213

214214
// There should always be a message and type for the error
215-
if (devMessage == NULL || type == NULL)
215+
if (devMessage == nil || type == nil)
216216
{
217217
NSDictionary *userInfoDict = @{ NSLocalizedDescriptionKey : STPUnexpectedError,
218218
STPErrorMessageKey : [NSString stringWithFormat:@"Could not interpret the error response that was returned from Stripe."]
@@ -315,10 +315,10 @@ + (void)setDefaultPublishableKey:(NSString *)publishableKey
315315

316316
+ (void)createTokenWithCard:(STPCard *)card publishableKey:(NSString *)publishableKey operationQueue:(NSOperationQueue *)queue completion:(STPCompletionBlock)handler
317317
{
318-
if (card == NULL)
318+
if (card == nil)
319319
[NSException raise:@"RequiredParameter" format:@"'card' is required to create a token"];
320320

321-
if (handler == NULL)
321+
if (handler == nil)
322322
[NSException raise:@"RequiredParameter" format:@"'handler' is required to use the token that is created"];
323323

324324
[self validateKey:publishableKey];
@@ -340,10 +340,10 @@ + (void)createTokenWithCard:(STPCard *)card publishableKey:(NSString *)publishab
340340

341341
+ (void)requestTokenWithID:(NSString *)tokenId publishableKey:(NSString *)publishableKey operationQueue:(NSOperationQueue *)queue completion:(STPCompletionBlock)handler
342342
{
343-
if (tokenId == NULL)
343+
if (tokenId == nil)
344344
[NSException raise:@"RequiredParameter" format:@"'tokenId' is required to retrieve a token"];
345345

346-
if (handler == NULL)
346+
if (handler == nil)
347347
[NSException raise:@"RequiredParameter" format:@"'handler' is required to use the token that is requested"];
348348

349349
[self validateKey:publishableKey];

0 commit comments

Comments
 (0)