Remove some TODO comments which are no longer necessary.

This commit is contained in:
Tsuda Kageyu 2017-01-08 01:43:04 +09:00
parent c97be6630e
commit 56a7656c2e
2 changed files with 0 additions and 2 deletions

View File

@ -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;

View File

@ -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());