refactoring

This commit is contained in:
Mikhail Motylev 2016-10-11 11:27:28 +03:00
parent 7eca499a59
commit 5a7a9b9655
1 changed files with 3 additions and 11 deletions

View File

@ -34,22 +34,14 @@ public protocol ConfigurableCell {
public extension ConfigurableCell where Self: UITableViewCell {
static var reuseIdentifier: String {
get {
return String(describing: self)
}
return String(describing: self)
}
static var estimatedHeight: CGFloat? {
get {
return nil
}
return nil
}
static var defaultHeight: CGFloat? {
get {
return nil
}
return nil
}
}