Chromium Code Reviews| Index: pkg/barback/lib/src/phase.dart |
| diff --git a/pkg/barback/lib/src/phase.dart b/pkg/barback/lib/src/phase.dart |
| index 86444add475c03b5d492093068f3fd9fdbbdfb72..63c13847b6ce06d190b4e5d1588f9618fe04c95c 100644 |
| --- a/pkg/barback/lib/src/phase.dart |
| +++ b/pkg/barback/lib/src/phase.dart |
| @@ -11,7 +11,6 @@ import 'asset.dart'; |
| import 'asset_cascade.dart'; |
| import 'asset_id.dart'; |
| import 'asset_node.dart'; |
| -import 'asset_set.dart'; |
| import 'errors.dart'; |
| import 'stream_pool.dart'; |
| import 'transform_node.dart'; |
| @@ -323,7 +322,7 @@ class Phase { |
| /// Applies all currently wired up and dirty transforms. |
| Future _processTransforms() { |
| - if (_next == null) return; |
| + if (_next == null) return new Future.value(); |
|
Bob Nystrom
2013/08/19 23:03:55
This will go away when you sync to latest code, I
|
| var newPassThroughs = _passThroughControllers.values |
| .map((controller) => controller.node) |