Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Unified Diff: packages/barback/lib/src/transformer/transform.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698