@@ -68,17 +68,17 @@ private class TestTableView: LayoutAdapterTableView, TestableReloadableView {
6868 reloadDataCount += 1
6969 }
7070
71- fileprivate override func insertRows( at indexPaths: [ IndexPath ] , with animation: UITableViewRowAnimation ) {
71+ fileprivate override func insertRows( at indexPaths: [ IndexPath ] , with animation: UITableView . RowAnimation ) {
7272 super. insertRows ( at: indexPaths, with: animation)
7373 batchUpdates. insertItems. append ( contentsOf: indexPaths)
7474 }
7575
76- fileprivate override func deleteRows( at indexPaths: [ IndexPath ] , with animation: UITableViewRowAnimation ) {
76+ fileprivate override func deleteRows( at indexPaths: [ IndexPath ] , with animation: UITableView . RowAnimation ) {
7777 super. deleteRows ( at: indexPaths, with: animation)
7878 batchUpdates. deleteItems. append ( contentsOf: indexPaths)
7979 }
8080
81- fileprivate override func reloadRows( at indexPaths: [ IndexPath ] , with animation: UITableViewRowAnimation ) {
81+ fileprivate override func reloadRows( at indexPaths: [ IndexPath ] , with animation: UITableView . RowAnimation ) {
8282 super. reloadRows ( at: indexPaths, with: animation)
8383 batchUpdates. reloadItems. append ( contentsOf: indexPaths)
8484 }
@@ -88,17 +88,17 @@ private class TestTableView: LayoutAdapterTableView, TestableReloadableView {
8888 batchUpdates. moveItems. append ( ItemMove ( from: indexPath, to: newIndexPath) )
8989 }
9090
91- fileprivate override func insertSections( _ sections: IndexSet , with animation: UITableViewRowAnimation ) {
91+ fileprivate override func insertSections( _ sections: IndexSet , with animation: UITableView . RowAnimation ) {
9292 super. insertSections ( sections, with: animation)
9393 batchUpdates. insertSections. formUnion ( sections)
9494 }
9595
96- fileprivate override func reloadSections( _ sections: IndexSet , with animation: UITableViewRowAnimation ) {
96+ fileprivate override func reloadSections( _ sections: IndexSet , with animation: UITableView . RowAnimation ) {
9797 super. reloadSections ( sections, with: animation)
9898 batchUpdates. reloadSections. formUnion ( sections)
9999 }
100100
101- fileprivate override func deleteSections( _ sections: IndexSet , with animation: UITableViewRowAnimation ) {
101+ fileprivate override func deleteSections( _ sections: IndexSet , with animation: UITableView . RowAnimation ) {
102102 super. deleteSections ( sections, with: animation)
103103 batchUpdates. deleteSections. formUnion ( sections)
104104 }
0 commit comments