File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Sources/PublicModules/PADSwiftInterfaceDiff/SwiftInterfaceParser Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -142,12 +142,11 @@ private extension SwiftInterfaceParser.Root {
142142 if extendedElementPrefix == extensionElement. extendedType {
143143 extendedElement. inheritance = ( extendedElement. inheritance ?? [ ] ) + ( extensionElement. inheritance ?? [ ] )
144144
145- print ( extendedElement. children)
146- print ( extensionElement. children)
147-
148145 extensionElement. children. forEach { child in
149146 // Filtering out default implementations with custom modifiers (public/package/...)
150- if extendedElement. children. contains ( where: { $0. description ( excl: [ . modifiers] ) == child. description ( excl: [ . modifiers] ) } ) {
147+ if extendedElement. children. contains ( where: {
148+ $0. description ( excl: [ . modifiers] ) == child. description ( excl: [ . modifiers] )
149+ } ) {
151150 return
152151 }
153152 extendedElement. children += [ child]
You can’t perform that action at this time.
0 commit comments