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

Unified Diff: packages/barback/lib/src/utils/multiset.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/utils/file_pool.dart ('k') | packages/barback/lib/src/utils/stream_pool.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/barback/lib/src/utils/multiset.dart
diff --git a/packages/barback/lib/src/utils/multiset.dart b/packages/barback/lib/src/utils/multiset.dart
index 4b3edea35a48b896467b509fadedbb3ffe53d8e8..8843043963e663df75f5aa16de8c82b9a8ff4641 100644
--- a/packages/barback/lib/src/utils/multiset.dart
+++ b/packages/barback/lib/src/utils/multiset.dart
@@ -29,12 +29,10 @@ class Multiset<E> extends IterableBase<E> {
.iterator;
}
- Multiset()
- : super();
+ Multiset() : super();
/// Creates a multi-set and initializes it using the contents of [other].
- Multiset.from(Iterable<E> other)
- : super() {
+ Multiset.from(Iterable<E> other) : super() {
other.forEach(add);
}
« no previous file with comments | « packages/barback/lib/src/utils/file_pool.dart ('k') | packages/barback/lib/src/utils/stream_pool.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698