Skip to content

Commit

Permalink
Revert "Safer objc_provider assignment in apple_framework_packaging (b…
Browse files Browse the repository at this point in the history
…azel-ios#855)"

This reverts commit 30733da.
  • Loading branch information
Timur Mustafaev authored and acecilia committed Apr 16, 2024
1 parent 06c9c7b commit 79175b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rules/framework.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1069,8 +1069,8 @@ def _apple_framework_packaging_impl(ctx):
default_info = DefaultInfo(files = depset(out_files + bundle_outs.files.to_list()))

objc_provider = objc_provider_utils.merge_objc_providers(
providers = [dep[apple_common.Objc] for dep in deps if apple_common.Objc in dep],
transitive = [dep[apple_common.Objc] for dep in transitive_deps if apple_common.Objc in dep],
providers = [dep[apple_common.Objc] for dep in deps],
transitive = [dep[apple_common.Objc] for dep in transitive_deps],
)
return [
avoid_deps_info,
Expand Down

0 comments on commit 79175b4

Please sign in to comment.