Skip to content

Commit

Permalink
Fix pbxbuildfile equality
Browse files Browse the repository at this point in the history
  • Loading branch information
waltflanagan committed Feb 19, 2025
1 parent 791afe0 commit bf96639
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ extension PBXBuildFile {
func isEqual(to rhs: PBXBuildFile) -> Bool {
if fileReference != rhs.fileReference { return false }
if productReference != rhs.productReference { return false }
if !NSDictionary(dictionary: settings ?? [:]).isEqual(NSDictionary(dictionary: rhs.settings ?? [:])) { return false }
if settings != rhs.settings { return false }
if platformFilter != rhs.platformFilter { return false }
if buildPhase != rhs.buildPhase { return false }
return super.isEqual(to: rhs)
Expand Down

0 comments on commit bf96639

Please sign in to comment.