Unverified Commit c6129b4e authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Add cast to prepare for package:file update (#33268)

parent bc7bc940
...@@ -46,7 +46,7 @@ abstract class DevFSContent { ...@@ -46,7 +46,7 @@ abstract class DevFSContent {
Stream<List<int>> contentsAsStream(); Stream<List<int>> contentsAsStream();
Stream<List<int>> contentsAsCompressedStream() { Stream<List<int>> contentsAsCompressedStream() {
return contentsAsStream().transform<List<int>>(gzip.encoder); return contentsAsStream().cast<List<int>>().transform<List<int>>(gzip.encoder);
} }
/// Return the list of files this content depends on. /// Return the list of files this content depends on.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment