remove excess internal
This commit is contained in:
parent
f2498a53f9
commit
bf6a81f367
@ -8,9 +8,9 @@
|
|||||||
|
|
||||||
public typealias BarButtonAction = (BarButtonItem) -> ()
|
public typealias BarButtonAction = (BarButtonItem) -> ()
|
||||||
|
|
||||||
@objc internal class ActionDelegate: NSObject {
|
@objc class ActionDelegate: NSObject {
|
||||||
internal var buttonAction: BarButtonAction?
|
var buttonAction: BarButtonAction?
|
||||||
@objc internal func callActionBlock(_ sender: BarButtonItem) {
|
@objc func callActionBlock(_ sender: BarButtonItem) {
|
||||||
buttonAction?(sender)
|
buttonAction?(sender)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -22,7 +22,7 @@ public typealias BarButtonAction = (BarButtonItem) -> ()
|
|||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
|
|
||||||
open weak var buttonDelegate: ButtonDelegateProtocol?
|
open weak var buttonDelegate: ButtonDelegateProtocol?
|
||||||
internal var actionDelegate: ActionDelegate?
|
var actionDelegate: ActionDelegate?
|
||||||
|
|
||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
// MARK: - Methods
|
// MARK: - Methods
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user