File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ - (void)setClientID:(NSString *)aClientID
252
252
keyChainGroup : (NSString *)aKeyChainGroup
253
253
forAccountType : (NSString *)anAccountType ;
254
254
{
255
- NSAssert (! aKeyChainGroup, @" keyChainGroup must be non-nil" );
255
+ NSAssert (aKeyChainGroup, @" keyChainGroup must be non-nil" );
256
256
257
257
[self setConfiguration: [NSDictionary dictionaryWithObjectsAndKeys:
258
258
aClientID, kNXOAuth2AccountStoreConfigurationClientID ,
@@ -275,8 +275,8 @@ - (void)setClientID:(NSString *)aClientID
275
275
tokenType : (NSString *)aTokenType
276
276
forAccountType : (NSString *)anAccountType ;
277
277
{
278
- NSAssert (! aKeyChainGroup, @" keyChainGroup must be non-nil" );
279
- NSAssert (! aTokenType, @" tokenType must be non-nil" );
278
+ NSAssert (aKeyChainGroup, @" keyChainGroup must be non-nil" );
279
+ NSAssert (aTokenType, @" tokenType must be non-nil" );
280
280
281
281
[self setConfiguration: [NSDictionary dictionaryWithObjectsAndKeys:
282
282
aClientID, kNXOAuth2AccountStoreConfigurationClientID ,
You can’t perform that action at this time.
0 commit comments