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

Unified Diff: runtime/bin/input_stream.dart

Issue 9289042: Minor changes to the dart:io library files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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: runtime/bin/input_stream.dart
diff --git a/runtime/bin/input_stream.dart b/runtime/bin/input_stream.dart
index e9326e2432fb9ba6ef579dc9e1318aa40a56693f..42892950f0b2bfe6c126613ccf67893431bba931 100644
--- a/runtime/bin/input_stream.dart
+++ b/runtime/bin/input_stream.dart
@@ -1,8 +1,10 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
+ * Basic input stream which supplies binary data.
+ *
* Input streams are used to read data sequentially from some data
* source. All input streams are non-blocking. They each have a number
* of read calls which will always return without any IO related
@@ -29,10 +31,7 @@
* will be used to avoid buffering more data than needed.
*
* Always set up appropriate handlers when using input streams.
- */
-
-/**
- * Basic input stream which supplies binary data.
+ *
*/
interface InputStream {
/**

Powered by Google App Engine
This is Rietveld 408576698