| Index: lib/src/percent/decoder.dart
|
| diff --git a/lib/src/percent/decoder.dart b/lib/src/percent/decoder.dart
|
| index 3ff3e016f0ffa2c6a67d6bfe77ee6e6a7f890050..4d8f9941b2c540e8c0f8b923df10a0bef7c9c1ef 100644
|
| --- a/lib/src/percent/decoder.dart
|
| +++ b/lib/src/percent/decoder.dart
|
| @@ -25,8 +25,7 @@ const _lastPercent = -1;
|
| ///
|
| /// This will throw a [FormatException] if the input string has an incomplete
|
| /// percent-encoding, or if it contains non-ASCII code units.
|
| -class PercentDecoder
|
| - extends ChunkedConverter<String, List<int>, String, List<int>> {
|
| +class PercentDecoder extends Converter<String, List<int>> {
|
| const PercentDecoder._();
|
|
|
| List<int> convert(String string) {
|
|
|