From 5a7a9b96555221c0488b2871a4f26fe71e120c06 Mon Sep 17 00:00:00 2001 From: Mikhail Motylev Date: Tue, 11 Oct 2016 11:27:28 +0300 Subject: [PATCH] refactoring --- Sources/ConfigurableCell.swift | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/Sources/ConfigurableCell.swift b/Sources/ConfigurableCell.swift index 353e099..cc96430 100644 --- a/Sources/ConfigurableCell.swift +++ b/Sources/ConfigurableCell.swift @@ -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 } }