Skip to content
This repository has been archived by the owner on Sep 14, 2021. It is now read-only.

Commit

Permalink
Use configurable imports to avoid having two versions of everything.
Browse files Browse the repository at this point in the history
R=floitsch@google.com

Review URL: https://codereview.chromium.org//2353933002 .

Committed: f1c6229
Committed: 799a627
  • Loading branch information
lrhn committed Sep 23, 2016
1 parent 799a627 commit 5ac9f73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/io_html.dart
Expand Up @@ -3,9 +3,9 @@
// BSD-style license that can be found in the LICENSE file.

import "dart:async" show Future, Stream;
import "dart:convert" show Encoding, LATIN1, UTF8;
import "dart:convert" show Encoding;
import "dart:html";
import "dart:typed_data" show Uint8List, ByteBuffer;
import "dart:typed_data" show ByteBuffer;

/// Reads the bytes of a URI as a stream of bytes.
Stream<List<int>> readAsStream(Uri uri) async* {
Expand Down

0 comments on commit 5ac9f73

Please sign in to comment.