From fdafe0d4012af00e0d9cb613a0146924b8fd8eaf Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sun, 14 Apr 2019 16:08:54 +0200 Subject: Update swift files to use Bariloche --- Sources/track.swift | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Sources/track.swift (limited to 'Sources/track.swift') diff --git a/Sources/track.swift b/Sources/track.swift deleted file mode 100644 index ead4359..0000000 --- a/Sources/track.swift +++ /dev/null @@ -1,15 +0,0 @@ -// Holds the name and artist of a track -class Track { - - // The name of the track to search for - let name: String - - // The name of the artist - let artist: String - - init(withName trackName: String, andArtist trackArtist: String) { - - name = trackName - artist = trackArtist - } -} -- cgit