-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Declare some more classes, functions and variables as open #666
Conversation
@@ -137,7 +137,7 @@ extension BaseRow { | |||
/** | |||
Evaluates if the row should be hidden or not and updates the form accordingly | |||
*/ | |||
public final func evaluateHidden() { | |||
public func evaluateHidden() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep final
@@ -156,7 +156,7 @@ extension BaseRow { | |||
/** | |||
Evaluates if the row should be disabled or not and updates it accordingly | |||
*/ | |||
public final func evaluateDisabled() { | |||
public func evaluateDisabled() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep final please
@@ -549,7 +549,7 @@ open class FormViewController : UIViewController, FormViewControllerProtocol { | |||
/** | |||
Called when a cell becomes first responder | |||
*/ | |||
public final func beginEditing<T:Equatable>(_ cell: Cell<T>) { | |||
public func beginEditing<T:Equatable>(_ cell: Cell<T>) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here too
@@ -567,7 +567,7 @@ open class FormViewController : UIViewController, FormViewControllerProtocol { | |||
/** | |||
Called when a cell resigns first responder | |||
*/ | |||
public final func endEditing<T:Equatable>(_ cell: Cell<T>) { | |||
public func endEditing<T:Equatable>(_ cell: Cell<T>) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
too
This is an evil pull request lmao |
hahaha. it was merged by me 😱 |
fixes #646
fixes #643
@xmartlabs/eureka