one more passCode fix

This commit is contained in:
Alexey Gerasimov 2017-04-26 20:06:53 +03:00
parent da4c6b7a9d
commit 3f2adc24d4
2 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ open class BasePassCodeViewController: UIViewController {
@IBOutlet public weak var errorLabel: UILabel?
@IBOutlet public weak var dotStackView: UIStackView!
let disposeBag = DisposeBag()
public let disposeBag = DisposeBag()
fileprivate lazy var fakeTextField: UITextField = {
let fakeTextField = UITextField()

View File

@ -56,9 +56,9 @@ open class BasePassCodeViewModel: BaseViewModel {
return PassCodeHolderBuilder.build(with: self.controllerType)
}()
init(controllerType: PassCodeControllerType,
passCodeConfiguration: PassCodeConfiguration,
touchIdService: TouchIDService? = nil) {
public init(controllerType: PassCodeControllerType,
passCodeConfiguration: PassCodeConfiguration,
touchIdService: TouchIDService? = nil) {
self.controllerType = controllerType
self.passCodeConfiguration = passCodeConfiguration