File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ import AppKit
5
5
#endif
6
6
7
7
public extension PEdgeInsets {
8
- public func minInsets( _ insets: PEdgeInsets ) -> PEdgeInsets {
8
+ func minInsets( _ insets: PEdgeInsets ) -> PEdgeInsets {
9
9
return PEdgeInsets ( top: minValue ( self . top, minValue: insets. top) ,
10
10
left: minValue ( self . left, minValue: insets. left) ,
11
11
bottom: minValue ( self . bottom, minValue: insets. bottom) ,
12
12
right: minValue ( self . right, minValue: insets. right) )
13
13
}
14
14
15
- public func minInsets( dx: CGFloat , dy: CGFloat ) -> PEdgeInsets {
15
+ func minInsets( dx: CGFloat , dy: CGFloat ) -> PEdgeInsets {
16
16
return PEdgeInsets ( top: minValue ( self . top, minValue: dy) ,
17
17
left: minValue ( self . left, minValue: dx) ,
18
18
bottom: minValue ( self . bottom, minValue: dy) ,
You can’t perform that action at this time.
0 commit comments