File tree Expand file tree Collapse file tree
src/Projects/BKDesign/Sources Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -112,7 +112,10 @@ public struct BKButtonColorSet {
112112}
113113
114114extension BKButtonColorSet : Equatable {
115- public static func == ( lhs: BKButtonColorSet , rhs: BKButtonColorSet ) -> Bool {
115+ public static func == (
116+ lhs: BKButtonColorSet ,
117+ rhs: BKButtonColorSet
118+ ) -> Bool {
116119 return lhs. normal. isEqual ( to: rhs. normal) &&
117120 lhs. pressed. isEqual ( to: rhs. pressed) &&
118121 lhs. disabled. isEqual ( to: rhs. disabled)
Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ public struct SetNeeds<Value: Equatable> {
1515 private weak var view : UIView ?
1616
1717 // 초기화
18- init ( wrappedValue: Value , _ needs: Need ... ) {
18+ init (
19+ wrappedValue: Value ,
20+ _ needs: Need ...
21+ ) {
1922 self . value = wrappedValue
2023 self . needs = Set ( needs)
2124 self . view = nil
You can’t perform that action at this time.
0 commit comments