commit | 5494323db90ea4040c9c2043ebc7e1cce84f23b3 | [log] [tgz] |
---|---|---|
author | Ian Hickson <ian@hixie.ch> | Tue Jan 19 09:31:57 2016 -0800 |
committer | Ian Hickson <ian@hixie.ch> | Sat Jan 23 18:13:13 2016 -0800 |
tree | 21d79f97d95ed3308b6a2d86462b08689cb6e9d4 | |
parent | b9716b84dbefd8748126c194d8185aeabb11d631 [diff] [blame] |
Move us to HashSet to avoid the overhead of tracking the order
diff --git a/examples/stocks/lib/main.dart b/examples/stocks/lib/main.dart index 4b235cd..cfc1b4a 100644 --- a/examples/stocks/lib/main.dart +++ b/examples/stocks/lib/main.dart
@@ -5,6 +5,7 @@ library stocks; import 'dart:async'; +import 'dart:collection'; import 'dart:math' as math; import 'dart:ui' as ui;