Commit 4ceda905 by Orkhan Alikhanov

Clean up access control

parent 1c3541f2
...@@ -686,31 +686,31 @@ fileprivate extension TextField { ...@@ -686,31 +686,31 @@ fileprivate extension TextField {
} }
} }
extension TextField { private extension TextField {
/// The animation for leftView when editing begins. /// The animation for leftView when editing begins.
fileprivate func leftViewEditingBeginAnimation() { func leftViewEditingBeginAnimation() {
updateLeftViewColor() updateLeftViewColor()
} }
/// The animation for leftView when editing ends. /// The animation for leftView when editing ends.
fileprivate func leftViewEditingEndAnimation() { func leftViewEditingEndAnimation() {
updateLeftViewColor() updateLeftViewColor()
} }
/// The animation for the divider when editing begins. /// The animation for the divider when editing begins.
fileprivate func dividerEditingDidBeginAnimation() { func dividerEditingDidBeginAnimation() {
updateDividerHeight() updateDividerHeight()
updateDividerColor() updateDividerColor()
} }
/// The animation for the divider when editing ends. /// The animation for the divider when editing ends.
fileprivate func dividerEditingDidEndAnimation() { func dividerEditingDidEndAnimation() {
updateDividerHeight() updateDividerHeight()
updateDividerColor() updateDividerColor()
} }
/// The animation for the placeholder when editing begins. /// The animation for the placeholder when editing begins.
fileprivate func placeholderEditingDidBeginAnimation() { func placeholderEditingDidBeginAnimation() {
guard .default == placeholderAnimation else { guard .default == placeholderAnimation else {
placeholderLabel.isHidden = true placeholderLabel.isHidden = true
return return
...@@ -750,7 +750,7 @@ extension TextField { ...@@ -750,7 +750,7 @@ extension TextField {
} }
/// The animation for the placeholder when editing ends. /// The animation for the placeholder when editing ends.
fileprivate func placeholderEditingDidEndAnimation() { func placeholderEditingDidEndAnimation() {
guard .default == placeholderAnimation else { guard .default == placeholderAnimation else {
placeholderLabel.isHidden = !isEmpty placeholderLabel.isHidden = !isEmpty
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment