@@ -51,8 +51,8 @@ + (void)handleTokenResponse:(NSURLResponse *)response body:(NSData *)body error:
51
51
if (requestError)
52
52
{
53
53
// 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 )
56
56
{
57
57
handler (nil , [self errorFromStripeResponse: jsonDictionary]);
58
58
}
@@ -65,7 +65,7 @@ + (void)handleTokenResponse:(NSURLResponse *)response body:(NSData *)body error:
65
65
NSError *parseError;
66
66
NSDictionary *jsonDictionary = [self dictionaryFromJSONData: body error: &parseError];
67
67
68
- if (jsonDictionary == NULL )
68
+ if (jsonDictionary == nil )
69
69
handler (nil , parseError);
70
70
else if ([(NSHTTPURLResponse *)response statusCode ] == 200 )
71
71
handler ([[STPToken alloc ] initWithAttributeDictionary: [self camelCasedResponseFromStripeResponse: jsonDictionary]], nil );
@@ -76,9 +76,9 @@ + (void)handleTokenResponse:(NSURLResponse *)response body:(NSData *)body error:
76
76
77
77
+ (NSDictionary *)dictionaryFromJSONData : (NSData *)data error : (NSError **)outError
78
78
{
79
- NSDictionary *jsonDictionary = [NSJSONSerialization JSONObjectWithData: data options: 0 error: NULL ];
79
+ NSDictionary *jsonDictionary = [NSJSONSerialization JSONObjectWithData: data options: 0 error: nil ];
80
80
81
- if (jsonDictionary == NULL )
81
+ if (jsonDictionary == nil )
82
82
{
83
83
NSDictionary *userInfoDict = @{ NSLocalizedDescriptionKey : STPUnexpectedError,
84
84
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
89
89
code: STPAPIError
90
90
userInfo: userInfoDict];
91
91
}
92
- return NULL ;
92
+ return nil ;
93
93
}
94
94
return jsonDictionary;
95
95
}
@@ -109,7 +109,7 @@ + (NSDictionary *)camelCasedResponseFromStripeResponse:(NSDictionary *)jsonDicti
109
109
110
110
+ (NSString *)camelCaseFromUnderscoredString : (NSString *)string
111
111
{
112
- if (string == NULL || [string isEqualToString: @" " ])
112
+ if (string == nil || [string isEqualToString: @" " ])
113
113
return @" " ;
114
114
115
115
NSMutableString *output = [NSMutableString string ];
@@ -207,12 +207,12 @@ + (NSError *)errorFromStripeResponse:(NSDictionary *)jsonDictionary
207
207
NSString *type = [errorDictionary valueForKey: @" type" ];
208
208
NSString *devMessage = [errorDictionary valueForKey: @" message" ];
209
209
NSString *parameter = [errorDictionary valueForKey: @" param" ];
210
- NSString *userMessage = NULL ;
211
- NSString *cardErrorCode = NULL ;
210
+ NSString *userMessage = nil ;
211
+ NSString *cardErrorCode = nil ;
212
212
NSInteger code = 0 ;
213
213
214
214
// There should always be a message and type for the error
215
- if (devMessage == NULL || type == NULL )
215
+ if (devMessage == nil || type == nil )
216
216
{
217
217
NSDictionary *userInfoDict = @{ NSLocalizedDescriptionKey : STPUnexpectedError,
218
218
STPErrorMessageKey : [NSString stringWithFormat: @" Could not interpret the error response that was returned from Stripe." ]
@@ -315,10 +315,10 @@ + (void)setDefaultPublishableKey:(NSString *)publishableKey
315
315
316
316
+ (void )createTokenWithCard : (STPCard *)card publishableKey : (NSString *)publishableKey operationQueue : (NSOperationQueue *)queue completion : (STPCompletionBlock)handler
317
317
{
318
- if (card == NULL )
318
+ if (card == nil )
319
319
[NSException raise :@" RequiredParameter" format: @" 'card' is required to create a token" ];
320
320
321
- if (handler == NULL )
321
+ if (handler == nil )
322
322
[NSException raise :@" RequiredParameter" format: @" 'handler' is required to use the token that is created" ];
323
323
324
324
[self validateKey: publishableKey];
@@ -340,10 +340,10 @@ + (void)createTokenWithCard:(STPCard *)card publishableKey:(NSString *)publishab
340
340
341
341
+ (void )requestTokenWithID : (NSString *)tokenId publishableKey : (NSString *)publishableKey operationQueue : (NSOperationQueue *)queue completion : (STPCompletionBlock)handler
342
342
{
343
- if (tokenId == NULL )
343
+ if (tokenId == nil )
344
344
[NSException raise :@" RequiredParameter" format: @" 'tokenId' is required to retrieve a token" ];
345
345
346
- if (handler == NULL )
346
+ if (handler == nil )
347
347
[NSException raise :@" RequiredParameter" format: @" 'handler' is required to use the token that is requested" ];
348
348
349
349
[self validateKey: publishableKey];
0 commit comments