We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, when targeting macOS 13, compiler shows warning "FSEventStreamSetDispatchQueue was deprecated" in FileWatcher.swift line 43.
Thanks and with best regards Petr Pavlicek
The text was updated successfully, but these errors were encountered:
@littlepaul476 Does it say what replaced it? Can you copy paste the warning message?
Sorry, something went wrong.
whole warning message:
'FSEventStreamScheduleWithRunLoop' was deprecated in macOS 13.0: Use FSEventStreamSetDispatchQueue instead.
and no auto fix provided
Yepp Seems like we have to deprecate the support then. And lazy load public var queue: DispatchQueue? with DispatchQueue.global()
public var queue: DispatchQueue?
DispatchQueue.global()
If you want to do the honours and make a pull request. I can merge it etc.
No branches or pull requests
Hello,
when targeting macOS 13, compiler shows warning "FSEventStreamSetDispatchQueue was deprecated" in FileWatcher.swift line 43.
Thanks and with best regards
Petr Pavlicek
The text was updated successfully, but these errors were encountered: