From a6870bd366ce602bc7604e80e85dab0106b4c62b Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Sun, 14 Oct 2012 10:07:13 -0700 Subject: [PATCH] Minor reorganization & cleanup --- Example/AFNetworking iOS Example.xcodeproj/project.pbxproj | 2 +- Example/Classes/Models/User.m | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Example/AFNetworking iOS Example.xcodeproj/project.pbxproj b/Example/AFNetworking iOS Example.xcodeproj/project.pbxproj index aa8f6b0..16afe14 100644 --- a/Example/AFNetworking iOS Example.xcodeproj/project.pbxproj +++ b/Example/AFNetworking iOS Example.xcodeproj/project.pbxproj @@ -142,8 +142,8 @@ F8E469551395739C00DB05C8 = { isa = PBXGroup; children = ( - F8A847C4161F524200940F39 /* Default@2x.png */, F8A847C2161F523E00940F39 /* Default.png */, + F8A847C4161F524200940F39 /* Default@2x.png */, F8A847C0161F51A300940F39 /* Default-568h@2x.png */, F8E469B71395759C00DB05C8 /* Networking Extensions */, F8E4696A1395739D00DB05C8 /* Classes */, diff --git a/Example/Classes/Models/User.m b/Example/Classes/Models/User.m index 16769dc..6ffe23b 100644 --- a/Example/Classes/Models/User.m +++ b/Example/Classes/Models/User.m @@ -33,8 +33,8 @@ NSString * const kUserProfileImageDidLoadNotification = @"com.alamofire.user.pro @implementation User { @private - __strong NSString *_avatarImageURLString; - __strong AFImageRequestOperation *_avatarImageRequestOperation; + NSString *_avatarImageURLString; + AFImageRequestOperation *_avatarImageRequestOperation; } @synthesize userID = _userID;