Skip to content

Commit b99b944

Browse files
committed
Fixes deprecated API use.
1 parent dfe7346 commit b99b944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/DataSources/CollectionViewSectionedDataSource.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public class CollectionViewSectionedDataSource<S: SectionModelType>
152152
override func _rx_collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
153153
precondition(indexPath.item < _sectionModels[indexPath.section].items.count)
154154

155-
return cellFactory(self, collectionView, indexPath, itemAtIndexPath(indexPath))
155+
return configureCell(self, collectionView, indexPath, itemAtIndexPath(indexPath))
156156
}
157157

158158
override func _rx_collectionView(collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, atIndexPath indexPath: NSIndexPath) -> UICollectionReusableView {

0 commit comments

Comments
 (0)