Skip to content

Commit 7aa4c8f

Browse files
authored
Merge pull request #11 from composed-swift/fix-swift-5.2-compiling
2 parents 40e45e9 + 9dd8345 commit 7aa4c8f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sources/ComposedUI/CollectionView/CollectionCoordinator.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ extension CollectionCoordinator: SectionProviderMappingDelegate {
221221

222222
public func mappingDidEndUpdating(_ mapping: SectionProviderMapping) {
223223
assert(Thread.isMainThread)
224-
collectionView.performBatchUpdates {
224+
collectionView.performBatchUpdates({
225225
if defersUpdate {
226226
prepareSections()
227227
}
@@ -235,7 +235,7 @@ extension CollectionCoordinator: SectionProviderMappingDelegate {
235235
sectionUpdates.forEach { $0() }
236236
reset()
237237
defersUpdate = false
238-
}
238+
})
239239
}
240240

241241
public func mapping(_ mapping: SectionProviderMapping, didUpdateSections sections: IndexSet) {

0 commit comments

Comments
 (0)