We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29d48bc commit ade997aCopy full SHA for ade997a
Sources/InterposeKit/InterposeKit.swift
@@ -292,7 +292,7 @@ private struct InterposeWatcher {
292
_dyld_register_func_for_add_image { _, _ in
293
InterposeWatcher.globalWatcherQueue.sync {
294
// this is called on the thread the image is loaded.
295
- InterposeWatcher.globalWatchers = InterposeWatcher.globalWatchers.filter { (waiter) -> Bool in
+ InterposeWatcher.globalWatchers = InterposeWatcher.globalWatchers.filter { waiter -> Bool in
296
do {
297
if try waiter.tryExecute() == false {
298
return true // only collect if this fails because class is not there yet
0 commit comments