Skip to content

Commit

Permalink
fix(GiniHealthSDK): Fix private variables on Payment Info views
Browse files Browse the repository at this point in the history
IPC-102
  • Loading branch information
razvancapra committed Mar 6, 2024
1 parent 36d24ce commit ec69121
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
final class PaymentInfoAnswerTableViewCell: UITableViewCell {
static let identifier = "PaymentInfoAnswerTableViewCell"

let textView: UITextView = {
lazy private var textView: UITextView = {
let textView = UITextView()
textView.translatesAutoresizingMaskIntoConstraints = false
textView.isScrollEnabled = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class PaymentInfoBankCollectionViewCell: UICollectionViewCell {
}
}

lazy var bankIconImageView: UIImageView = {
lazy private var bankIconImageView: UIImageView = {
let imageView = UIImageView()
imageView.translatesAutoresizingMaskIntoConstraints = false
imageView.contentMode = .scaleAspectFit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class PaymentInfoQuestionHeaderViewCell: UIView {
}
}

lazy var titleLabel: UILabel = {
private lazy var titleLabel: UILabel = {
let label = UILabel()
label.translatesAutoresizingMaskIntoConstraints = false
label.lineBreakMode = .byWordWrapping
Expand All @@ -26,7 +26,7 @@ final class PaymentInfoQuestionHeaderViewCell: UIView {
return label
}()

lazy var extendedImageView: UIImageView = {
private lazy var extendedImageView: UIImageView = {
let imageView = UIImageView()
imageView.translatesAutoresizingMaskIntoConstraints = false
imageView.contentMode = .scaleAspectFit
Expand Down Expand Up @@ -66,7 +66,7 @@ final class PaymentInfoQuestionHeaderViewCell: UIView {
])
}

@objc func tappedOnView() {
@objc private func tappedOnView() {
didTapSelectButton()
}

Expand Down

0 comments on commit ec69121

Please sign in to comment.