| Index: samples/clock/balls.dart
|
| diff --git a/samples/clock/balls.dart b/samples/clock/balls.dart
|
| index 3062a4cbc0f8d7f8caa07265dc7f02188798e412..d497c6dcd2cf1730e1e44d395e48225367bf2efd 100644
|
| --- a/samples/clock/balls.dart
|
| +++ b/samples/clock/balls.dart
|
| @@ -46,7 +46,7 @@ class Balls {
|
| lastTime = now;
|
|
|
| // incrementally move each ball, removing balls that are offscreen
|
| - balls = balls.where((ball) => ball.tick(delta));
|
| + balls = balls.where((ball) => ball.tick(delta)).toList();
|
| collideBalls(delta);
|
| }
|
|
|
|
|