aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-12-13 05:26:04 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-12-13 05:26:04 +0100
commit5971c197bdf114eae2d7672a699795a301b32ac0 (patch)
tree70c78e25e764a6691037a616f3bb5c992f88b2b1 /WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift
parentSettings: better padding calculation (diff)
downloadwireguard-apple-5971c197bdf114eae2d7672a699795a301b32ac0.tar.xz
wireguard-apple-5971c197bdf114eae2d7672a699795a301b32ac0.zip
Remove useless whitespace
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift')
-rw-r--r--WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift b/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift
index 587f7b1..21d9a07 100644
--- a/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift
+++ b/WireGuard/WireGuard/UI/iOS/UITableViewCell+Reuse.swift
@@ -13,7 +13,7 @@ extension UITableView {
func register<T: UITableViewCell>(_: T.Type) {
register(T.self, forCellReuseIdentifier: T.reuseIdentifier)
}
-
+
func dequeueReusableCell<T: UITableViewCell>(for indexPath: IndexPath) -> T {
//swiftlint:disable:next force_cast
return dequeueReusableCell(withIdentifier: T.reuseIdentifier, for: indexPath) as! T