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

Unified Diff: pkg/barback/lib/src/change_batch.dart

Issue 210223005: Get rid of an unused library in barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/lib/src/change_batch.dart
diff --git a/pkg/barback/lib/src/change_batch.dart b/pkg/barback/lib/src/change_batch.dart
deleted file mode 100644
index 8f98995795fad0a75383af97c90c8cdecf9b2cad..0000000000000000000000000000000000000000
--- a/pkg/barback/lib/src/change_batch.dart
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library barback.change_batch;
-
-import 'asset_id.dart';
-
-/// Represents a batch of source asset changes: additions, removals and
-/// modifications.
-class ChangeBatch {
- /// The assets that have been added or modified in this batch.
- final updated = new Set<AssetId>();
-
- /// The assets that have been removed in this batch.
- final removed = new Set<AssetId>();
-
- /// Adds the updated [assets] to this batch.
- void update(Iterable<AssetId> assets) {
- updated.addAll(assets);
-
- // If they were previously removed, they are back now.
- removed.removeAll(assets);
- }
-
- /// Removes [assets] from this batch.
- void remove(Iterable<AssetId> assets) {
- removed.addAll(assets);
-
- // If they were previously updated, they are gone now.
- updated.removeAll(assets);
- }
-}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698