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

Unified Diff: pkg/barback/test/transformer/check_content.dart

Issue 243793005: Don't require Transformer methods to return Futures. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 8 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: pkg/barback/test/transformer/check_content.dart
diff --git a/pkg/barback/test/transformer/check_content.dart b/pkg/barback/test/transformer/check_content.dart
index 0696c72c9480aaac12082de39862e85c773f8e25..d9cecfabac6d1f24f20fffd7feb4c45ccd9d3725 100644
--- a/pkg/barback/test/transformer/check_content.dart
+++ b/pkg/barback/test/transformer/check_content.dart
@@ -17,7 +17,7 @@ class CheckContentTransformer extends MockTransformer {
CheckContentTransformer(this.content, this.addition);
- Future<bool> doIsPrimary(AssetId id) => new Future.value(true);
+ bool doIsPrimary(AssetId id) => true;
Future doApply(Transform transform) {
return getPrimary(transform).then((primary) {
« no previous file with comments | « pkg/barback/test/transformer/catch_asset_not_found.dart ('k') | pkg/barback/test/transformer/check_content_and_rename.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698