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

Unified Diff: runtime/lib/growable_array.dart

Issue 2163173003: VM: Remove _GrowableList.from which was never called. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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: runtime/lib/growable_array.dart
diff --git a/runtime/lib/growable_array.dart b/runtime/lib/growable_array.dart
index 016a4543aa0aaf5b242a030ab6fc606f14c348e0..271c71a12264d2c0928dbe82dc9a3ef853725ec1 100644
--- a/runtime/lib/growable_array.dart
+++ b/runtime/lib/growable_array.dart
@@ -104,12 +104,6 @@ class _GrowableList<T> extends ListBase<T> {
return new _GrowableList<T>.withData(data);
}
- factory _GrowableList.from(Iterable<T> other) {
- List<T> result = new _GrowableList<T>();
- result.addAll(other);
- return result;
- }
-
factory _GrowableList.withData(_List data)
native "GrowableList_allocate";
« 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