File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
WooCommerce/Classes/ViewRelated/Orders Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -40,17 +40,17 @@ final class OrderStatusListViewController: UIViewController {
4040 self . order = order
4141 super. init ( nibName: type ( of: self ) . nibName, bundle: nil )
4242 }
43-
43+
4444 required init ? ( coder aDecoder: NSCoder ) {
4545 fatalError ( " init(coder:) has not been implemented " )
4646 }
47-
47+
4848 override func viewDidLoad( ) {
4949 super. viewDidLoad ( )
5050 registerTableViewCells ( )
5151 configureNavigationBar ( )
5252 configureTableView ( )
53-
53+
5454 configureResultsController ( )
5555 }
5656
@@ -200,7 +200,8 @@ extension OrderStatusListViewController: UITableViewDataSource {
200200 }
201201
202202 func tableView( _ tableView: UITableView , cellForRowAt indexPath: IndexPath ) -> UITableViewCell {
203- guard let cell = tableView. dequeueReusableCell ( withIdentifier: StatusListTableViewCell . reuseIdentifier, for: indexPath) as? StatusListTableViewCell else {
203+ guard let cell = tableView. dequeueReusableCell ( withIdentifier: StatusListTableViewCell . reuseIdentifier,
204+ for: indexPath) as? StatusListTableViewCell else {
204205 fatalError ( )
205206 }
206207
You can’t perform that action at this time.
0 commit comments