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

Unified Diff: pkg/intl/lib/number_format.dart

Issue 22284003: pkg: analysis aided cleanup (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 7 years, 4 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 | « pkg/intl/lib/message_lookup_by_library.dart ('k') | pkg/intl/lib/src/intl_helpers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/lib/number_format.dart
diff --git a/pkg/intl/lib/number_format.dart b/pkg/intl/lib/number_format.dart
index c8816d82fa3b3810138aa2dbd64d00c32827b50c..bdc5e46aed2030535c020500dba0991315853edd 100644
--- a/pkg/intl/lib/number_format.dart
+++ b/pkg/intl/lib/number_format.dart
@@ -699,7 +699,7 @@ Iterator _iterator(String s) => new _StringIterator(s);
* Provides an Iterable that wraps [_iterator] so it can be used in a `for`
* loop.
*/
-class _StringIterable extends Iterable<String> {
+class _StringIterable extends IterableBase<String> {
final Iterator<String> iterator;
_StringIterable(String s)
« no previous file with comments | « pkg/intl/lib/message_lookup_by_library.dart ('k') | pkg/intl/lib/src/intl_helpers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698