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

Unified Diff: sdk/lib/io/stdio.dart

Issue 13647019: Remove typo templated type. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/stdio.dart
diff --git a/sdk/lib/io/stdio.dart b/sdk/lib/io/stdio.dart
index d76748d682fa09ff95a5654aaa9ed84e925ad523..a5d4012ad2aa323f0990c118f6dfafbb2854e878 100644
--- a/sdk/lib/io/stdio.dart
+++ b/sdk/lib/io/stdio.dart
@@ -41,12 +41,12 @@ class _StdSink implements IOSink {
void writeAll(objects, [sep = ""]) => _ioSink.writeAll(objects, sep);
void writeBytes(List<int> data) => _ioSink.writeBytes(data);
void writeCharCode(int charCode) => _ioSink.writeCharCode(charCode);
- Future<T> consume(Stream<List<int>> stream) => _ioSink.consume(stream);
- Future<T> addStream(Stream<List<int>> stream) => _ioSink.addStream(stream);
- Future<T> writeStream(Stream<List<int>> stream)
+ Future consume(Stream<List<int>> stream) => _ioSink.consume(stream);
+ Future addStream(Stream<List<int>> stream) => _ioSink.addStream(stream);
+ Future writeStream(Stream<List<int>> stream)
=> _ioSink.writeStream(stream);
Future close() => _ioSink.close();
- Future<T> get done => _ioSink.done;
+ Future get done => _ioSink.done;
}
class StdioType {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698