Skip to content

Commit 44f1993

Browse files
committed
Silence Hound
1 parent 0ac1c03 commit 44f1993

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

WooCommerce/Classes/ViewRelated/Orders/OrderStatusListViewController.swift

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)