summaryrefslogtreecommitdiffstats
path: root/src/sources
diff options
context:
space:
mode:
authorRJ Skerry-Ryan <rryan@mixxx.org>2018-10-14 22:38:07 -0700
committerRJ Skerry-Ryan <rryan@mixxx.org>2018-10-14 23:29:57 -0700
commit2f42bee3538d8ab6e6412b7eee3d158788a0a703 (patch)
tree8b789c53d530f4c065acec6a7a8d49365a542aec /src/sources
parent1b6d50041a534f844747afb5b4eff7a92d28fc5b (diff)
Address review comments.
Diffstat (limited to 'src/sources')
-rw-r--r--src/sources/metadatasourcetaglib.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sources/metadatasourcetaglib.cpp b/src/sources/metadatasourcetaglib.cpp
index 27ab7d57f4..846ffe0cf6 100644
--- a/src/sources/metadatasourcetaglib.cpp
+++ b/src/sources/metadatasourcetaglib.cpp
@@ -74,8 +74,6 @@ class AiffFile: public TagLib::RIFF::AIFF::File {
private:
// From the specs: 13. TEXT CHUNKS - NAME, AUTHOR, COPYRIGHT, ANNOTATION
// "text: contains pure ASCII characters"
- // NOTE(uklotzde): In order to be independent of the currently defined
- // codec we use QString::fromLatin1() instead of QString::fromLatin1()
static QString decodeChunkText(const TagLib::ByteVector& chunkData) {
return QString::fromLatin1(chunkData.data(), chunkData.size());
}