소스 검색

Delete print

Quentin Richard 7 년 전
부모
커밋
08197551dc
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      VLCAlertViewController.swift

+ 0 - 2
VLCAlertViewController.swift

@@ -29,8 +29,6 @@ typealias AlertAction = (UIAlertAction) -> Void
 
    @objc class func alertViewManager(title: String, errorMessage: String? = nil, viewController: UIViewController,
                                        buttonsAction: [ButtonAction]) {
-    print(buttonsAction[0].buttonTitle)
-    print(buttonsAction[0].buttonAction)
         let alert = UIAlertController(title: title, message: errorMessage, preferredStyle: .alert)
         alert.show(viewController, sender: Any?.self)
         for buttonAction in buttonsAction {