From 26e0c9ee4c70ad209a5d1d9609c517235e1d1b21 Mon Sep 17 00:00:00 2001 From: Jorge Canizales Date: Fri, 7 Aug 2015 09:48:33 -0700 Subject: [PATCH] Fixup for 971d06ad06caadb369e318112bba0e039188cfc2 --- src/objective-c/GRPCClient/private/GRPCHost.m | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/objective-c/GRPCClient/private/GRPCHost.m b/src/objective-c/GRPCClient/private/GRPCHost.m index 45e5f0602da..d902f95b516 100644 --- a/src/objective-c/GRPCClient/private/GRPCHost.m +++ b/src/objective-c/GRPCClient/private/GRPCHost.m @@ -78,12 +78,12 @@ if (cachedHost) { return cachedHost; } - } - if ((self = [super init])) { - _address = address; - _secure = YES; - hostCache[address] = self; + if ((self = [super init])) { + _address = address; + _secure = YES; + hostCache[address] = self; + } } return self; }