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

Unified Diff: lib/io/input_stream.dart

Issue 11348032: Fix issues found by analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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/io/http.dart ('k') | tests/standalone/io/string_stream_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/io/input_stream.dart
diff --git a/lib/io/input_stream.dart b/lib/io/input_stream.dart
index 755f54e68a2ad2ffa13ee79a896bfa4fb0cff436..a59f603f10318d5003f213d6b9a1ce233cb22349 100644
--- a/lib/io/input_stream.dart
+++ b/lib/io/input_stream.dart
@@ -60,7 +60,7 @@ abstract class InputStream {
* `false` for the optional argument [close] keeps the output
* stream open after writing all data from the input stream.
*/
- void pipe(OutputStream output, [bool close = true]);
+ void pipe(OutputStream output, {bool close: true});
/**
* Close the underlying communication channel to avoid getting any
« no previous file with comments | « lib/io/http.dart ('k') | tests/standalone/io/string_stream_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698