Index: initialize/lib/src/initialize_tracker.dart |
diff --git a/initialize/lib/src/initialize_tracker.dart b/initialize/lib/src/initialize_tracker.dart |
deleted file mode 100644 |
index 6bd59829a0422fe7afbd7063edd022ae73b6531e..0000000000000000000000000000000000000000 |
--- a/initialize/lib/src/initialize_tracker.dart |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-// Copyright (c) 2015, 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 initialize.test.initialize_tracker; |
- |
-import 'package:initialize/initialize.dart'; |
- |
-// Initializer that just saves everything it sees. |
-class InitializeTracker implements Initializer<dynamic> { |
- static final List seen = []; |
- |
- const InitializeTracker(); |
- |
- @override |
- void initialize(value) => seen.add(value); |
-} |
- |
-const initializeTracker = const InitializeTracker(); |