Skip to content

Commit 4b68ff2

Browse files
committed
Newlines
1 parent b8c0244 commit 4b68ff2

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

TestSwift/Classes/DetailsViewController.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ class DetailsViewController: UIViewController, UITableViewDelegate, UITableViewD
6868

6969
func tableView(tableView: UITableView!, didSelectRowAtIndexPath indexPath: NSIndexPath!) {
7070
var track = tracks[indexPath.row]
71-
72-
7371
if let cell = tableView.cellForRowAtIndexPath(indexPath) as? TrackCell {
7472
if(trackPlaying(track)) {
7573
cell.playIcon.text = "▶️"
@@ -85,7 +83,6 @@ class DetailsViewController: UIViewController, UITableViewDelegate, UITableViewD
8583

8684
}
8785

88-
8986
func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int {
9087
return tracks.count
9188
}

TestSwift/TrackCell.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import Foundation
1010

1111

1212
class TrackCell: UITableViewCell {
13-
1413
@IBOutlet var playIcon: UILabel
1514
@IBOutlet var titleLabel: UILabel
16-
1715
}

0 commit comments

Comments
 (0)