Skip to content

Commit b38de8f

Browse files
committed
Remove unused UIView extension
1 parent 18e3900 commit b38de8f

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

Sources/Extensions/UIView+Extensions.swift

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
11
import UIKit
22

33
extension UIView {
4-
var viewInsets: UIEdgeInsets {
5-
if #available(iOS 11, *) {
6-
return safeAreaInsets
7-
}
8-
9-
return .zero
10-
}
11-
124
func addSubviews(_ subviews: UIView...) {
13-
addSubviews(subviews)
14-
}
15-
16-
func addSubviews(_ subviews: [UIView]) {
175
subviews.forEach {
186
addSubview($0)
197
}

0 commit comments

Comments
 (0)