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

Unified Diff: frog/lib/node/nodeimpl.dart

Issue 9284030: cleanup from r3556 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge again Created 8 years, 11 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 | « frog/lib/node/fs.dart ('k') | frog/minfrog » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/lib/node/nodeimpl.dart
diff --git a/frog/lib/node/nodeimpl.dart b/frog/lib/node/nodeimpl.dart
index df3d473be994f46007699da075ac0beb8929c7e5..80e452f93c6a18f685c76adc96ae6693a7f0b9b9 100644
--- a/frog/lib/node/nodeimpl.dart
+++ b/frog/lib/node/nodeimpl.dart
@@ -206,7 +206,7 @@ class FixedLists {
}
int filteredLength = filtered.length;
List result = ctor(filteredLength);
- for (int i = 0; i < len; i++) {
+ for (int i = 0; i < filteredLength; i++) {
result[i] = filtered[i];
}
return result;
« no previous file with comments | « frog/lib/node/fs.dart ('k') | frog/minfrog » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698