From 609dbcccb8adcad30a42ba22dfcbcd8a72cac6d1 Mon Sep 17 00:00:00 2001 From: Stephan Diederich Date: Tue, 16 Jul 2013 18:15:42 +0200 Subject: [PATCH] adjust property declarations while those are probably singletons, it should be more safe to retain them. --- Classes/BITStoreUpdateManagerPrivate.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Classes/BITStoreUpdateManagerPrivate.h b/Classes/BITStoreUpdateManagerPrivate.h index 21782856b6..48646b4465 100644 --- a/Classes/BITStoreUpdateManagerPrivate.h +++ b/Classes/BITStoreUpdateManagerPrivate.h @@ -48,9 +48,9 @@ #pragma mark - For Testing -@property (nonatomic, assign) NSBundle *mainBundle; -@property (nonatomic, assign) NSLocale *currentLocale; -@property (nonatomic, assign) NSUserDefaults *userDefaults; +@property (nonatomic, strong) NSBundle *mainBundle; +@property (nonatomic, strong) NSLocale *currentLocale; +@property (nonatomic, strong) NSUserDefaults *userDefaults; - (BOOL)shouldAutoCheckForUpdates; - (BOOL)hasNewVersion:(NSDictionary *)dictionary;