Skip to content

Commit fd3c5ac

Browse files
committed
Remove unnecessary SwiftBinaryInfo required provider from plugins attribute (#1445)
I incorrectly added this as part of the cherry-pick in 5f6ac77. --------- Signed-off-by: Brentley Jones <[email protected]>
1 parent 5bb185c commit fd3c5ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

swift/internal/attrs.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""Common attributes used by multiple Swift build rules."""
1616

1717
load("@bazel_skylib//lib:dicts.bzl", "dicts")
18-
load("//swift:providers.bzl", "SwiftBinaryInfo", "SwiftInfo")
18+
load("//swift:providers.bzl", "SwiftInfo")
1919
load(":providers.bzl", "SwiftCompilerPluginInfo")
2020

2121
def swift_common_rule_attrs(
@@ -147,7 +147,7 @@ Swift 5.9+.
147147
A list of `swift_compiler_plugin` targets that should be loaded by the compiler
148148
when compiling this module and any modules that directly depend on it.
149149
""",
150-
providers = [[SwiftBinaryInfo, SwiftCompilerPluginInfo]],
150+
providers = [SwiftCompilerPluginInfo],
151151
),
152152
"srcs": attr.label_list(
153153
allow_empty = not requires_srcs,

0 commit comments

Comments
 (0)