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

Unified Diff: sdk/lib/convert/line_splitter.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
« no previous file with comments | « sdk/lib/convert/json.dart ('k') | sdk/lib/convert/utf.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/line_splitter.dart
diff --git a/sdk/lib/convert/line_splitter.dart b/sdk/lib/convert/line_splitter.dart
index 9ece31720ce2f2774056eeec950123290428180e..d77905d2a8d552c5a509becc1fe600d1ca505d13 100644
--- a/sdk/lib/convert/line_splitter.dart
+++ b/sdk/lib/convert/line_splitter.dart
@@ -19,9 +19,7 @@ const int _CR = 13;
*/
class LineSplitter extends Converter<String, List<String>> /*=Object*/
- implements
- ChunkedConverter<String, List<String>, String, String>
-/*=StreamTransformer<String, String>*/ {
+ implements Object /*=StreamTransformer<String, String>*/ {
vsm 2017/03/22 13:39:11 Can we get rid of the comment syntax here yet?
floitsch 2017/03/22 13:46:28 No. These are incompatible. Removing the comment
const LineSplitter();
/// Split [lines] into individual lines.
« no previous file with comments | « sdk/lib/convert/json.dart ('k') | sdk/lib/convert/utf.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698