| Index: packages/barback/lib/src/transformer/transform.dart
|
| diff --git a/packages/barback/lib/src/transformer/transform.dart b/packages/barback/lib/src/transformer/transform.dart
|
| index 2da73eee043a147f43a1a4d80713be1755b14d85..8bc057a72143b5f92b25c1bc9ec2935b982f7929 100644
|
| --- a/packages/barback/lib/src/transformer/transform.dart
|
| +++ b/packages/barback/lib/src/transformer/transform.dart
|
| @@ -25,8 +25,8 @@ Future<Transform> newTransform(AggregateTransform aggregate) {
|
| // key, so we can safely get the first asset emitted. We don't want to wait
|
| // for the stream to close, since that requires barback to prove that no more
|
| // new assets will be generated.
|
| - return aggregate.primaryInputs.first.then((primaryInput) =>
|
| - new Transform._(aggregate, primaryInput));
|
| + return aggregate.primaryInputs.first
|
| + .then((primaryInput) => new Transform._(aggregate, primaryInput));
|
| }
|
|
|
| /// While a [Transformer] represents a *kind* of transformation, this defines
|
|
|