Skip to content

Commit 2986e88

Browse files
committed
Fix build warning about obsolete use of await.
rdar://159492256
1 parent d9c8077 commit 2986e88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SWBCore/BuildRequestContext.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public final class BuildRequestContext: Sendable {
101101
[Path("\(name).framework/\(name)"), Path("/\(name).framework/Versions/A/\(name)")]
102102
})
103103

104-
for platformExtension in await workspaceContext.core.pluginManager.extensions(of: PlatformInfoExtensionPoint.self) {
104+
for platformExtension in workspaceContext.core.pluginManager.extensions(of: PlatformInfoExtensionPoint.self) {
105105
suffixes.append(contentsOf: platformExtension.additionalKnownTestLibraryPathSuffixes())
106106
}
107107
return suffixes

0 commit comments

Comments
 (0)