mirror of https://github.com/SnapKit/SnapKit
Fixed missing public access control on greaterThanEqualTo
This commit is contained in:
parent
bfb1a786ff
commit
b3740ffb0d
|
@ -134,7 +134,7 @@ public class Constraint {
|
||||||
public func greaterThanOrEqualTo(other: ConstraintItem) -> Constraint {
|
public func greaterThanOrEqualTo(other: ConstraintItem) -> Constraint {
|
||||||
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
||||||
}
|
}
|
||||||
func greaterThanOrEqualTo(other: View) -> Constraint {
|
public func greaterThanOrEqualTo(other: View) -> Constraint {
|
||||||
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
return constrainTo(other, relation: .GreaterThanOrEqualTo)
|
||||||
}
|
}
|
||||||
#if os(iOS)
|
#if os(iOS)
|
||||||
|
|
Loading…
Reference in New Issue