Index: utils/pub/io.dart |
diff --git a/utils/pub/io.dart b/utils/pub/io.dart |
index 8523d340527fef5169da484f9c0ebf3a30b2ce10..13516223b2d9551cd47c13ab2b20de63378fb6c5 100644 |
--- a/utils/pub/io.dart |
+++ b/utils/pub/io.dart |
@@ -284,11 +284,11 @@ String relativeToPub(String target) { |
/// A sink that writes to standard output. Errors piped to this stream will be |
/// surfaced to the top-level error handler. |
-final EventSink<List<int>> stdoutSink = _wrapStdio(stdout, "stdout"); |
+final EventSink<List<int>> stdoutSink = stdout; |
/// A sink that writes to standard error. Errors piped to this stream will be |
/// surfaced to the top-level error handler. |
-final EventSink<List<int>> stderrSink = _wrapStdio(stderr, "stderr"); |
+final EventSink<List<int>> stderrSink = stderr; |
/// Wrap the standard output or error [stream] in a [EventSink]. Any errors are |
/// logged, and then the program is terminated. [name] is used for debugging. |