| Index: lib/src/util/io.dart
|
| diff --git a/lib/src/util/io.dart b/lib/src/util/io.dart
|
| index 59638dccba37b0bcb2e2d7986301c53af5532159..54f93fdfc9c1444a2a0b3efef839b6552db0dc31 100644
|
| --- a/lib/src/util/io.dart
|
| +++ b/lib/src/util/io.dart
|
| @@ -3,7 +3,6 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| import 'dart:async';
|
| -import 'dart:convert';
|
| import 'dart:io';
|
| import 'dart:mirrors';
|
|
|
| @@ -39,8 +38,7 @@ final OperatingSystem currentOS = (() {
|
| })();
|
|
|
| /// A queue of lines of standard input.
|
| -final stdinLines = new StreamQueue(
|
| - UTF8.decoder.fuse(const LineSplitter()).bind(stdin));
|
| +final stdinLines = new StreamQueue(transformUtf8ToLines(stdin));
|
|
|
| /// Whether this is being run as a subprocess in the test package's own tests.
|
| bool inTestTests = Platform.environment["_DART_TEST_TESTING"] == "true";
|
|
|