remove redundant size specificier in mid usage

This commit is contained in:
Sander Jansen
2015-11-12 08:50:34 -06:00
parent 59a1b7a491
commit c4a02a1799
+1 -1
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);
}
}