remove check for nil

This commit is contained in:
Stephan Diederich 2013-07-16 18:14:54 +02:00
parent f7136ec9d1
commit 125e84b9ac

View File

@ -215,10 +215,8 @@
- (void)setEnableStoreUpdateManager:(BOOL)enableStoreUpdateManager {
if (_storeUpdateManager) {
[_storeUpdateManager setEnableStoreUpdateManager:enableStoreUpdateManager];
}
_enableStoreUpdateManager = enableStoreUpdateManager;
[_storeUpdateManager setEnableStoreUpdateManager:enableStoreUpdateManager];
}