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

Unified Diff: sdk/lib/convert/chunked_conversion.dart

Issue 2764943002: Fix some strong mode issues in the core libraries. (Closed)
Patch Set: Fix another type issue. Created 3 years, 9 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
Index: sdk/lib/convert/chunked_conversion.dart
diff --git a/sdk/lib/convert/chunked_conversion.dart b/sdk/lib/convert/chunked_conversion.dart
index 710bef75c01129f76f197b0222bd08db13ac0c9e..ff1294fced06ca2405d97c72f03c4165b76a7b5e 100644
--- a/sdk/lib/convert/chunked_conversion.dart
+++ b/sdk/lib/convert/chunked_conversion.dart
@@ -6,16 +6,6 @@ part of dart.convert;
typedef void _ChunkedConversionCallback<T>(T accumulated);
-/// This class is deprecated. Extend [Converter] directly.
-@deprecated
-abstract class ChunkedConverter<S, T, S2, T2> extends Converter<S, T> {
- const ChunkedConverter() : super();
-
- dynamic bind(dynamic other) => super.bind(other);
- dynamic startChunkedConversion(dynamic sink) =>
- super.startChunkedConversion(sink);
-}
-
/**
* A [ChunkedConversionSink] is used to transmit data more efficiently between
* two converters during chunked conversions.

Powered by Google App Engine
This is Rietveld 408576698