CueParser: Remove unused variable

This commit is contained in:
Jonas Kvinge 2024-06-29 15:24:54 +02:00
parent e0be15cf01
commit c1f66b1885
1 changed files with 0 additions and 2 deletions

View File

@ -102,7 +102,6 @@ SongList CueParser::Load(QIODevice *device, const QString &playlist_path, const
QString line = text_stream.readLine(); QString line = text_stream.readLine();
QList<CueEntry> entries; QList<CueEntry> entries;
int files = 0;
QString album_artist; QString album_artist;
QString album; QString album;
@ -162,7 +161,6 @@ SongList CueParser::Load(QIODevice *device, const QString &playlist_path, const
} }
// End of the header -> go into the track mode // End of the header -> go into the track mode
else if (line_name.compare(QLatin1String(kTrack), Qt::CaseInsensitive) == 0) { else if (line_name.compare(QLatin1String(kTrack), Qt::CaseInsensitive) == 0) {
files++;
break; break;
} }
// Ignore the rest of possible field types for now... // Ignore the rest of possible field types for now...