Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Unified Diff: lib/src/percent/decoder.dart

Issue 2031873006: Stop implementing ChunkedConverter. (Closed) Base URL: git@github.com:dart-lang/convert.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/hex/encoder.dart ('k') | lib/src/percent/encoder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « lib/src/hex/encoder.dart ('k') | lib/src/percent/encoder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698