Skip to content

Commit

Permalink
cleanup member visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
r10s committed Aug 1, 2024
1 parent 3af374e commit 7a76db7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,9 @@ protocol CertificateCheckDelegate: AnyObject {

class CertificateCheckController: UITableViewController {

var options = [Int(DC_CERTCK_AUTO),
Int(DC_CERTCK_STRICT),
Int(DC_CERTCK_ACCEPT_INVALID_CERTIFICATES)]

var currentValue: Int
var selectedIndex: Int?
private let options = [Int(DC_CERTCK_AUTO), Int(DC_CERTCK_STRICT), Int(DC_CERTCK_ACCEPT_INVALID_CERTIFICATES)]
private var currentValue: Int
private var selectedIndex: Int?
weak var delegate: CertificateCheckDelegate?

var staticCells: [UITableViewCell] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ protocol SecuritySettingsDelegate: AnyObject {

class SecuritySettingsController: UITableViewController {

private var options: [Int32] = [DC_SOCKET_AUTO, DC_SOCKET_SSL, DC_SOCKET_STARTTLS, DC_SOCKET_PLAIN]

private let options: [Int32] = [DC_SOCKET_AUTO, DC_SOCKET_SSL, DC_SOCKET_STARTTLS, DC_SOCKET_PLAIN]
private var selectedIndex: Int
weak var delegate: SecuritySettingsDelegate?

Expand Down

0 comments on commit 7a76db7

Please sign in to comment.