Skip to content

Commit 685ce01

Browse files
committed
Minor formatting
1 parent 63aa2ff commit 685ce01

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Classes/GLCollectionTableViewCell.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class GLCollectionTableViewCell: UITableViewCell {
181181
// Initialization code
182182
}
183183

184-
override final func layoutSubviews() {
184+
final override func layoutSubviews() {
185185
super.layoutSubviews()
186186

187187
collectionFlowLayout.paginatedScroll = collectionViewPaginatedScroll

Classes/GLIndexedCollectionViewCell.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class GLIndexedCollectionViewCell: UICollectionViewCell {
3333
static let identifier: String = "collectionViewCellID"
3434

3535
override func awakeFromNib() {
36-
super.awakeFromNib()
37-
// Initialization code
38-
}
36+
super.awakeFromNib()
37+
// Initialization code
38+
}
3939
}

Classes/GLTableCollectionViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ final class GLTableCollectionViewController: UITableViewController, UICollection
7070
randomRed = CGFloat(arc4random_uniform(128))
7171
}
7272

73-
colorsArray.append(UIColor(red: randomRed/255.0, green: randomGreen/255.0, blue: randomBlue/255.0, alpha: 1.0))
73+
colorsArray.append(UIColor(red: randomRed / 255.0, green: randomGreen / 255.0, blue: randomBlue / 255.0, alpha: 1.0))
7474
}
7575

7676
colorsDict[tableViewSection] = colorsArray
@@ -207,7 +207,7 @@ final class GLTableCollectionViewController: UITableViewController, UICollection
207207
}
208208

209209
/*
210-
// MARK: <Navigation>
210+
// MARK: <Navigation>
211211

212212
// In a storyboard-based application, you will often want to do a little
213213
// preparation before navigation

0 commit comments

Comments
 (0)