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

Unified Diff: packages/barback/lib/src/asset/asset_node_set.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
« no previous file with comments | « packages/barback/lib/src/asset/asset_node.dart ('k') | packages/barback/lib/src/asset/asset_set.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/barback/lib/src/asset/asset_node_set.dart
diff --git a/packages/barback/lib/src/asset/asset_node_set.dart b/packages/barback/lib/src/asset/asset_node_set.dart
index a1fc17bebcc9952dd07c2e10173244f2b4dd4afb..da55c230bfdae7b3d802720b69e56d54fd405d0c 100644
--- a/packages/barback/lib/src/asset/asset_node_set.dart
+++ b/packages/barback/lib/src/asset/asset_node_set.dart
@@ -19,8 +19,7 @@ class AssetNodeSet extends DelegatingSet<AssetNode> {
/// A map from asset ids to assets in the set.
final _assetsById = new Map<AssetId, AssetNode>();
- AssetNodeSet()
- : super(new Set());
+ AssetNodeSet() : super(new Set());
/// Returns the asset node in the set with [id], or `null` if none exists.
AssetNode operator [](AssetId id) => _assetsById[id];
@@ -39,4 +38,4 @@ class AssetNodeSet extends DelegatingSet<AssetNode> {
bool containsId(AssetId id) => _assetsById.containsKey(id);
void addAll(Iterable<AssetNode> nodes) => nodes.forEach(add);
-}
+}
« no previous file with comments | « packages/barback/lib/src/asset/asset_node.dart ('k') | packages/barback/lib/src/asset/asset_set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698