From 451bbccc748a62aca5cde61446a052889f979d79 Mon Sep 17 00:00:00 2001 From: Aliona Date: Mon, 15 Jan 2018 18:01:36 +0300 Subject: [PATCH] Fix spacing --- .../Extensions/UITableView/UITableView+Extensions.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Sources/Extensions/UITableView/UITableView+Extensions.swift b/Sources/Extensions/UITableView/UITableView+Extensions.swift index 4eac0278..d6fbdced 100644 --- a/Sources/Extensions/UITableView/UITableView+Extensions.swift +++ b/Sources/Extensions/UITableView/UITableView+Extensions.swift @@ -33,9 +33,9 @@ public extension UITableView { backgroundView.backgroundColor = color addSubview(backgroundView) backgroundView.translatesAutoresizingMaskIntoConstraints = false - NSLayoutConstraint.activate([ backgroundView.leadingAnchor.constraint(equalTo: leadingAnchor), - backgroundView.bottomAnchor.constraint(equalTo: topAnchor), - backgroundView.widthAnchor.constraint(equalTo: widthAnchor), - backgroundView.heightAnchor.constraint(equalTo: heightAnchor)]) + NSLayoutConstraint.activate([backgroundView.leadingAnchor.constraint(equalTo: leadingAnchor), + backgroundView.bottomAnchor.constraint(equalTo: topAnchor), + backgroundView.widthAnchor.constraint(equalTo: widthAnchor), + backgroundView.heightAnchor.constraint(equalTo: heightAnchor)]) } }