From 725e96928269b4eac40d94cb3388a4e32a58d69b Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Tue, 9 Mar 2021 11:01:26 -0800 Subject: [PATCH] Review feedback --- lib/cocoapods/sandbox/file_accessor.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/cocoapods/sandbox/file_accessor.rb b/lib/cocoapods/sandbox/file_accessor.rb index 5ac6f7ae86..37ddf26193 100644 --- a/lib/cocoapods/sandbox/file_accessor.rb +++ b/lib/cocoapods/sandbox/file_accessor.rb @@ -177,9 +177,7 @@ def vendored_dynamic_frameworks # def vendored_static_xcframeworks vendored_xcframeworks.select do |path| - if Xcode::XCFramework.new(path).build_type == BuildType.static_framework - path - end + Xcode::XCFramework.new(path).build_type == BuildType.static_framework end end