浏览代码

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 {