Whitespaces removing
This commit is contained in:
parent
38c1e72049
commit
f55876b6a2
|
|
@ -39,11 +39,12 @@ public final class EmptyCell: SeparatorCell, AppearanceConfigurable, Configurabl
|
|||
backgroundColor = .clear
|
||||
contentView.backgroundColor = appearance.color
|
||||
}
|
||||
|
||||
|
||||
public func configure(with _: Void) { }
|
||||
|
||||
|
||||
public override func prepareForReuse() {
|
||||
super.prepareForReuse()
|
||||
configure(appearance: Appearance())
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ open class SeparatorCell: UITableViewCell {
|
|||
bottomViewBottomConstraint = bottomView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor)
|
||||
bottomViewBottomConstraint.isActive = true
|
||||
}
|
||||
|
||||
|
||||
open override func prepareForReuse() {
|
||||
super.prepareForReuse()
|
||||
configureSeparator(with: .none)
|
||||
|
|
|
|||
Loading…
Reference in New Issue