소스 검색

Remove unneeded closure ornamentation

Elvis Nuñez 9 년 전
부모
커밋
c0d8a7d3e8
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      Example-iOS/demos/BasicUIScrollViewController.swift

+ 3 - 3
Example-iOS/demos/BasicUIScrollViewController.swift

@@ -43,16 +43,16 @@ class BasicUIScrollViewController: UIViewController {
         
         if (!didSetupConstraints) {
             
-            scrollView.snp_makeConstraints { (make) -> Void in
+            scrollView.snp_makeConstraints { make in
                 make.edges.equalTo(view).inset(UIEdgeInsetsZero)
             }
             
-            contentView.snp_makeConstraints { (make) -> Void in
+            contentView.snp_makeConstraints { make in
                 make.edges.equalTo(scrollView).inset(UIEdgeInsetsZero)
                 make.width.equalTo(scrollView)
             }
             
-            label.snp_makeConstraints { (make) -> Void in
+            label.snp_makeConstraints { make in
                 make.top.equalTo(contentView).inset(20)
                 make.leading.equalTo(contentView).inset(20)
                 make.trailing.equalTo(contentView).inset(20)