Chromium Code Reviews| Index: runtime/lib/byte_array.dart |
| diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart |
| index 33c1a618dc8ce483d7b99e8adeb963bbeb0739c5..2d6a7c68c350723f477c0ef783be7174064047c0 100644 |
| --- a/runtime/lib/byte_array.dart |
| +++ b/runtime/lib/byte_array.dart |
| @@ -142,7 +142,7 @@ abstract class _ByteArrayBase { |
| } |
| Collection where(bool f(element)) { |
| - return Collections.where(this, new List(), f); |
| + return new WhereIterable<int>(this, f); |
| } |
| bool every(bool f(element)) { |