one last dart omit local (#7070)

This commit is contained in:
Derek Bailey
2022-02-01 22:25:52 -08:00
committed by GitHub
parent 68a7661546
commit 619b784374

View File

@@ -1054,7 +1054,7 @@ class StringReader extends Reader<String> {
String read(BufferContext bc, int offset) {
var strOffset = bc.derefObject(offset);
var length = bc._getUint32(strOffset);
Uint8List bytes = bc._asUint8List(strOffset + _sizeofUint32, length);
var bytes = bc._asUint8List(strOffset + _sizeofUint32, length);
if (asciiOptimization && _isLatin(bytes)) {
return String.fromCharCodes(bytes);
}