File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -958,6 +958,11 @@ - (void)updateAutomaticCheckSettingChanged:(NSNotification *)notification
958
958
return [NSSet setWithObject: @" updaterSettings.automaticallyChecksForUpdates" ];
959
959
}
960
960
961
+ + (BOOL )automaticallyNotifiesObserversOfAutomaticallyChecksForUpdates
962
+ {
963
+ return NO ;
964
+ }
965
+
961
966
- (void )setAutomaticallyDownloadsUpdates : (BOOL )automaticallyUpdates
962
967
{
963
968
_updaterSettings.automaticallyDownloadsUpdates = automaticallyUpdates;
@@ -973,6 +978,11 @@ - (BOOL)automaticallyDownloadsUpdates
973
978
return [NSSet setWithObject: @" updaterSettings.automaticallyDownloadsUpdates" ];
974
979
}
975
980
981
+ + (BOOL )automaticallyNotifiesObserversOfAutomaticallyDownloadsUpdates
982
+ {
983
+ return NO ;
984
+ }
985
+
976
986
- (void )setFeedURL : (NSURL * _Nullable)feedURL
977
987
{
978
988
if (![NSThread isMainThread ]) {
@@ -1100,6 +1110,11 @@ - (BOOL)sendsSystemProfile
1100
1110
return [NSSet setWithObject: @" updaterSettings.sendsSystemProfile" ];
1101
1111
}
1102
1112
1113
+ + (BOOL )automaticallyNotifiesObserversOfSendsSystemProfile
1114
+ {
1115
+ return NO ;
1116
+ }
1117
+
1103
1118
static NSString *escapeURLComponent (NSString *str) {
1104
1119
NSString *escapedString = [str stringByAddingPercentEncodingWithAllowedCharacters: NSCharacterSet .URLQueryAllowedCharacterSet];
1105
1120
@@ -1200,6 +1215,11 @@ - (NSTimeInterval)updateCheckInterval
1200
1215
return [NSSet setWithObject: @" updaterSettings.updateCheckInterval" ];
1201
1216
}
1202
1217
1218
+ + (BOOL )automaticallyNotifiesObserversOfUpdateCheckInterval
1219
+ {
1220
+ return NO ;
1221
+ }
1222
+
1203
1223
- (void )dealloc
1204
1224
{
1205
1225
if (_startedUpdater) {
Original file line number Diff line number Diff line change @@ -163,6 +163,11 @@ - (void)setAutomaticallyChecksForUpdates:(BOOL)automaticallyCheckForUpdates
163
163
}
164
164
}
165
165
166
+ + (BOOL )automaticallyNotifiesObserversOfAutomaticallyChecksForUpdates
167
+ {
168
+ return NO ;
169
+ }
170
+
166
171
- (NSTimeInterval )currentUpdateCheckInterval SPU_OBJC_DIRECT
167
172
{
168
173
// Find the stored check interval. User defaults override Info.plist.
@@ -189,6 +194,11 @@ - (void)setUpdateCheckInterval:(NSTimeInterval)updateCheckInterval
189
194
}
190
195
}
191
196
197
+ + (BOOL )automaticallyNotifiesObserversOfUpdateCheckInterval
198
+ {
199
+ return NO ;
200
+ }
201
+
192
202
// For allowing automatic downloaded updates to be turned on or off
193
203
- (NSNumber * _Nullable)allowsAutomaticUpdatesOption
194
204
{
@@ -221,6 +231,11 @@ - (void)setAutomaticallyDownloadsUpdates:(BOOL)automaticallyDownloadsUpdates
221
231
[self didChangeValueForKey: SUAutomaticallyDownloadsUpdatesKeyPath];
222
232
}
223
233
234
+ + (BOOL )automaticallyNotifiesObserversOfAutomaticallyDownloadsUpdates
235
+ {
236
+ return NO ;
237
+ }
238
+
224
239
- (BOOL )currentSendsSystemProfile SPU_OBJC_DIRECT
225
240
{
226
241
return [_host boolForKey: SUSendProfileInfoKey];
@@ -236,4 +251,9 @@ - (void)setSendsSystemProfile:(BOOL)sendsSystemProfile
236
251
[self didChangeValueForKey: SUSendsSystemProfileKeyPath];
237
252
}
238
253
254
+ + (BOOL )automaticallyNotifiesObserversOfSendsSystemProfile
255
+ {
256
+ return NO ;
257
+ }
258
+
239
259
@end
You can’t perform that action at this time.
0 commit comments