Skip to content

Commit ff07461

Browse files
author
Emily Laguna
committed
Remove some unused prints, code
1 parent 67315da commit ff07461

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

WordPress/Classes/ViewRelated/Jetpack/Jetpack Scan/JetpackScanViewController.swift

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@ import UIKit
22

33
class JetpackScanViewController: UIViewController, JetpackScanView {
44
private let blog: Blog
5+
var coordinator: JetpackScanCoordinator?
56

67
// IBOutlets
78
@IBOutlet weak var tableView: UITableView!
89

9-
//
10-
var coordinator: JetpackScanCoordinator?
11-
1210
// MARK: - Initializers
1311
@objc init(blog: Blog) {
1412
self.blog = blog
@@ -30,16 +28,15 @@ class JetpackScanViewController: UIViewController, JetpackScanView {
3028

3129
// MARK: - JetpackScanView
3230
func render(_ scan: JetpackScan) {
33-
print("Hello")
3431
tableView.reloadData()
3532
}
3633

3734
func showLoading() {
38-
print("Loading shown")
35+
3936
}
4037

4138
func showError() {
42-
print("oops")
39+
4340
}
4441

4542
// MARK: - Private:
@@ -55,10 +52,6 @@ class JetpackScanViewController: UIViewController, JetpackScanView {
5552
static let statusCellIdentifier = "StatusCell"
5653
static let threatCellIdentifier = "ThreatCell"
5754
}
58-
59-
private struct Strings {
60-
61-
}
6255
}
6356

6457
// MARK: - Table View

0 commit comments

Comments
 (0)