| Index: sdk/lib/convert/ascii.dart
|
| diff --git a/sdk/lib/convert/ascii.dart b/sdk/lib/convert/ascii.dart
|
| index 1caffe05afb8c4735312b7b9e699989be7d80a48..c8b59037711f2c08d9ada6fc4877076f8c8247d4 100644
|
| --- a/sdk/lib/convert/ascii.dart
|
| +++ b/sdk/lib/convert/ascii.dart
|
| @@ -185,7 +185,6 @@ abstract class _UnicodeSubsetDecoder extends Converter<List<int>, String> {
|
| int byteCount = bytes.length;
|
| RangeError.checkValidRange(start, end, byteCount);
|
| if (end == null) end = byteCount;
|
| - int length = end - start;
|
|
|
| for (int i = start; i < end; i++) {
|
| int byte = bytes[i];
|
|
|