| 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 {
|
| /**
|
|
|