Skip to content
This repository has been archived by the owner on Feb 14, 2020. It is now read-only.

Commit

Permalink
Forgot to include this minor style change in my last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
eczarny committed Sep 13, 2012
1 parent 94968e0 commit a1345d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions XMLRPCRequest.m
Expand Up @@ -30,9 +30,9 @@ - (id)initWithURL: (NSURL *)URL withEncoder: (id<XMLRPCEncoder>)encoder {

- (id)initWithURL: (NSURL *)URL {
#if ! __has_feature(objc_arc)
return [self initWithURL:URL withEncoder: [[[XMLRPCDefaultEncoder alloc] init] autorelease]];
return [self initWithURL: URL withEncoder: [[[XMLRPCDefaultEncoder alloc] init] autorelease]];
#else
return [self initWithURL:URL withEncoder: [[XMLRPCDefaultEncoder alloc] init]];
return [self initWithURL: URL withEncoder: [[XMLRPCDefaultEncoder alloc] init]];
#endif
}

Expand Down

0 comments on commit a1345d5

Please sign in to comment.