Suggested implementation for NSProgress addSubscriber...

This commit is contained in:
Gregory John Casamento 2019-09-28 06:27:18 -04:00
parent 5f1cfb901c
commit d760480bb6

View file

@ -451,14 +451,13 @@ static NSMutableDictionary *__subscribers = nil;
+ (id)addSubscriberForFileURL: (NSURL *)url
withPublishingHandler: (NSProgressPublishingHandler)publishingHandler
{
// There is no acceptable description of this method in the documentation.
// [__subscribers addObject: publishingHandler forObject: url];
return nil;
}
+ (void) removeSubscriber: (id)subscriber
{
// There is no acceptable description of this method in the documentation.
return;
// [__subscribers removeObject: subscriber];
}
@end