remove redundant size specificier in mid usage

This commit is contained in:
Sander Jansen 2015-05-16 14:57:19 -05:00
parent 59a1b7a491
commit c4a02a1799

View File

@ -441,7 +441,7 @@ void Ogg::XiphComment::parse(const ByteVector &data)
// Parse key and value
String key = String(entry.mid(0,sep), String::UTF8);
String value = String(entry.mid(sep+1, commentLength-sep), String::UTF8);
String value = String(entry.mid(sep+1), String::UTF8);
addField(key, value, false);
}
}