Skip to content

Commit bf96639

Browse files
committed
Fix pbxbuildfile equality
1 parent 791afe0 commit bf96639

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/XcodeProj/Objects/Sourcery/Equality.generated.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ extension PBXBuildFile {
1515
func isEqual(to rhs: PBXBuildFile) -> Bool {
1616
if fileReference != rhs.fileReference { return false }
1717
if productReference != rhs.productReference { return false }
18-
if !NSDictionary(dictionary: settings ?? [:]).isEqual(NSDictionary(dictionary: rhs.settings ?? [:])) { return false }
18+
if settings != rhs.settings { return false }
1919
if platformFilter != rhs.platformFilter { return false }
2020
if buildPhase != rhs.buildPhase { return false }
2121
return super.isEqual(to: rhs)

0 commit comments

Comments
 (0)