Skip to content

Commit

Permalink
chore: 접근 제어자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
MaraMincho committed Jan 11, 2024
1 parent 13caa50 commit 2acf20b
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ public extension UIView {
public typealias Output = UIGestureRecognizer
public typealias Failure = Never

let targetView: UIView
let gesture: UIGestureRecognizer
init(targetView: UIView, gesture: UIGestureRecognizer) {
private let targetView: UIView
private let gesture: UIGestureRecognizer

public init(targetView: UIView, gesture: UIGestureRecognizer) {
self.targetView = targetView
self.gesture = gesture
}
Expand Down

0 comments on commit 2acf20b

Please sign in to comment.