From c1bb67869531afbe261ce2d9bd460951ede24396 Mon Sep 17 00:00:00 2001 From: Urs Fleisch Date: Fri, 24 Nov 2023 17:52:18 +0100 Subject: [PATCH] Remove redundant UserTextIdentificationFrame::fieldList() --- taglib/mpeg/id3v2/frames/textidentificationframe.cpp | 7 ------- taglib/mpeg/id3v2/frames/textidentificationframe.h | 1 - 2 files changed, 8 deletions(-) diff --git a/taglib/mpeg/id3v2/frames/textidentificationframe.cpp b/taglib/mpeg/id3v2/frames/textidentificationframe.cpp index 7adcecc7..157cd718 100644 --- a/taglib/mpeg/id3v2/frames/textidentificationframe.cpp +++ b/taglib/mpeg/id3v2/frames/textidentificationframe.cpp @@ -391,13 +391,6 @@ String UserTextIdentificationFrame::description() const : String(); } -StringList UserTextIdentificationFrame::fieldList() const -{ - // TODO: remove this function - - return TextIdentificationFrame::fieldList(); -} - void UserTextIdentificationFrame::setText(const String &text) { if(description().isEmpty()) diff --git a/taglib/mpeg/id3v2/frames/textidentificationframe.h b/taglib/mpeg/id3v2/frames/textidentificationframe.h index e6c8755d..d7b2654b 100644 --- a/taglib/mpeg/id3v2/frames/textidentificationframe.h +++ b/taglib/mpeg/id3v2/frames/textidentificationframe.h @@ -276,7 +276,6 @@ namespace TagLib { */ void setDescription(const String &s); - StringList fieldList() const; void setText(const String &text) override; void setText(const StringList &fields);