From: Tsuda Kageyu Date: Sat, 7 Jan 2017 16:43:04 +0000 (+0900) Subject: Remove some TODO comments which are no longer necessary. X-Git-Tag: v1.12-beta-1~89 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56a7656c2ea87a16587f0f124b28f43bf29ec8a7;p=taglib Remove some TODO comments which are no longer necessary. --- diff --git a/taglib/flac/flacfile.cpp b/taglib/flac/flacfile.cpp index 93a0e952..b2014886 100644 --- a/taglib/flac/flacfile.cpp +++ b/taglib/flac/flacfile.cpp @@ -198,7 +198,6 @@ bool FLAC::File::save() } // Compute the amount of padding, and append that to data. - // TODO: Should be calculated in offset_t in taglib2. long originalLength = d->streamStart - d->flacStart; long paddingLength = originalLength - data.size() - 4; diff --git a/taglib/mpeg/id3v2/id3v2tag.cpp b/taglib/mpeg/id3v2/id3v2tag.cpp index 810b2aef..e8de7252 100644 --- a/taglib/mpeg/id3v2/id3v2tag.cpp +++ b/taglib/mpeg/id3v2/id3v2tag.cpp @@ -619,7 +619,6 @@ ByteVector ID3v2::Tag::render(int version) const } // Compute the amount of padding, and append that to tagData. - // TODO: Should be calculated in long long in taglib2. long originalSize = d->header.tagSize(); long paddingSize = originalSize - (tagData.size() - Header::size());