We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791afe0 commit bf96639Copy full SHA for bf96639
Sources/XcodeProj/Objects/Sourcery/Equality.generated.swift
@@ -15,7 +15,7 @@ extension PBXBuildFile {
15
func isEqual(to rhs: PBXBuildFile) -> Bool {
16
if fileReference != rhs.fileReference { return false }
17
if productReference != rhs.productReference { return false }
18
- if !NSDictionary(dictionary: settings ?? [:]).isEqual(NSDictionary(dictionary: rhs.settings ?? [:])) { return false }
+ if settings != rhs.settings { return false }
19
if platformFilter != rhs.platformFilter { return false }
20
if buildPhase != rhs.buildPhase { return false }
21
return super.isEqual(to: rhs)
0 commit comments