From a1345d5bd00a5b2fda8254a5ec896163382cea2e Mon Sep 17 00:00:00 2001 From: Eric Czarny Date: Wed, 12 Sep 2012 21:12:16 -0400 Subject: [PATCH] Forgot to include this minor style change in my last commit. --- XMLRPCRequest.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XMLRPCRequest.m b/XMLRPCRequest.m index 7297560..23a06d6 100644 --- a/XMLRPCRequest.m +++ b/XMLRPCRequest.m @@ -30,9 +30,9 @@ - (id)initWithURL: (NSURL *)URL withEncoder: (id)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 }