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

Unified Diff: lib/src/hex/encoder.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/decoder.dart ('k') | lib/src/percent/decoder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/hex/encoder.dart
diff --git a/lib/src/hex/encoder.dart b/lib/src/hex/encoder.dart
index ee53dd70b9aed800d00a5e147e75b1edf9babf45..a9c66a5a255cb4401de03655001a0bfb2aea6501 100644
--- a/lib/src/hex/encoder.dart
+++ b/lib/src/hex/encoder.dart
@@ -16,8 +16,7 @@ const hexEncoder = const HexEncoder._();
///
/// This will throw a [RangeError] if the byte array has any digits that don't
/// fit in the gamut of a byte.
-class HexEncoder
- extends ChunkedConverter<List<int>, String, List<int>, String> {
+class HexEncoder extends Converter<List<int>, String> {
const HexEncoder._();
String convert(List<int> bytes) => _convert(bytes, 0, bytes.length);
« no previous file with comments | « lib/src/hex/decoder.dart ('k') | lib/src/percent/decoder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698