1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-01-30 09:05:04 +01:00

CueParser: Remove unused variable

This commit is contained in:
Jonas Kvinge 2024-06-29 15:24:54 +02:00
parent e0be15cf01
commit c1f66b1885

View File

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