@@ -100,13 +100,13 @@ public class _TableViewSectionedDataSource
100
100
101
101
}
102
102
103
- public class RxTableViewSectionedDataSource < S: SectionModelType >
103
+ public class TableViewSectionedDataSource < S: SectionModelType >
104
104
: _TableViewSectionedDataSource
105
105
, SectionedViewDataSourceType {
106
106
107
107
public typealias I = S . Item
108
108
public typealias Section = S
109
- public typealias CellFactory = ( RxTableViewSectionedDataSource < S > , UITableView , IndexPath , I ) -> UITableViewCell
109
+ public typealias CellFactory = ( TableViewSectionedDataSource < S > , UITableView , IndexPath , I ) -> UITableViewCell
110
110
111
111
#if DEBUG
112
112
// If data source has already been bound, then mutating it
@@ -166,29 +166,29 @@ public class RxTableViewSectionedDataSource<S: SectionModelType>
166
166
}
167
167
}
168
168
169
- public var titleForHeaderInSection : ( ( RxTableViewSectionedDataSource < S > , Int ) -> String ? ) ? {
169
+ public var titleForHeaderInSection : ( ( TableViewSectionedDataSource < S > , Int ) -> String ? ) ? {
170
170
didSet {
171
171
#if DEBUG
172
172
ensureNotMutatedAfterBinding ( )
173
173
#endif
174
174
}
175
175
}
176
- public var titleForFooterInSection : ( ( RxTableViewSectionedDataSource < S > , Int ) -> String ? ) ? {
176
+ public var titleForFooterInSection : ( ( TableViewSectionedDataSource < S > , Int ) -> String ? ) ? {
177
177
didSet {
178
178
#if DEBUG
179
179
ensureNotMutatedAfterBinding ( )
180
180
#endif
181
181
}
182
182
}
183
183
184
- public var canEditRowAtIndexPath : ( ( RxTableViewSectionedDataSource < S > , IndexPath ) -> Bool ) ? {
184
+ public var canEditRowAtIndexPath : ( ( TableViewSectionedDataSource < S > , IndexPath ) -> Bool ) ? {
185
185
didSet {
186
186
#if DEBUG
187
187
ensureNotMutatedAfterBinding ( )
188
188
#endif
189
189
}
190
190
}
191
- public var canMoveRowAtIndexPath : ( ( RxTableViewSectionedDataSource < S > , IndexPath ) -> Bool ) ? {
191
+ public var canMoveRowAtIndexPath : ( ( TableViewSectionedDataSource < S > , IndexPath ) -> Bool ) ? {
192
192
didSet {
193
193
#if DEBUG
194
194
ensureNotMutatedAfterBinding ( )
@@ -199,14 +199,14 @@ public class RxTableViewSectionedDataSource<S: SectionModelType>
199
199
public var rowAnimation : UITableViewRowAnimation = . automatic
200
200
201
201
#if os(iOS)
202
- public var sectionIndexTitles : ( ( RxTableViewSectionedDataSource < S > ) -> [ String ] ? ) ? {
202
+ public var sectionIndexTitles : ( ( TableViewSectionedDataSource < S > ) -> [ String ] ? ) ? {
203
203
didSet {
204
204
#if DEBUG
205
205
ensureNotMutatedAfterBinding ( )
206
206
#endif
207
207
}
208
208
}
209
- public var sectionForSectionIndexTitle : ( ( RxTableViewSectionedDataSource < S > , _ title: String , _ index: Int ) -> Int ) ? {
209
+ public var sectionForSectionIndexTitle : ( ( TableViewSectionedDataSource < S > , _ title: String , _ index: Int ) -> Int ) ? {
210
210
didSet {
211
211
#if DEBUG
212
212
ensureNotMutatedAfterBinding ( )
0 commit comments