Skip to content

Commit

Permalink
Changed initWithPublicKey: so the static analyzer doesn't show a warn…
Browse files Browse the repository at this point in the history
…ing.
  • Loading branch information
ksuther committed Jun 15, 2011
1 parent 60843cb commit 22c6242
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions objc/CFobLicVerifier.m
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ - (id)init {
} }


- (id)initWithPublicKey:(NSString *)pubKey { - (id)initWithPublicKey:(NSString *)pubKey {
if (![super init]) if ( (self = [super init]) ) {
return nil; [self setPublicKey:pubKey];
[self setPublicKey:pubKey]; }
return self; return self;
} }


Expand Down

0 comments on commit 22c6242

Please sign in to comment.