Skip to content

Commit d0c400e

Browse files
committed
Fixes can move wrong super method call.
1 parent d204bc7 commit d0c400e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/DataSources/TableViewSectionedDataSource.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public class RxTableViewSectionedDataSource<S: SectionModelType>
186186

187187
override func _tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
188188
guard let canEditRow = canEditRowAtIndexPath?(self, indexPath: indexPath) else {
189-
return super._tableView(tableView, canMoveRowAtIndexPath: indexPath)
189+
return super._tableView(tableView, canEditRowAtIndexPath: indexPath)
190190
}
191191

192192
return canEditRow

0 commit comments

Comments
 (0)