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

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

Issue 11194025: Second round of cleanups for new optional parameter semantics. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
Index: pkg/intl/lib/date_symbols.dart
===================================================================
--- pkg/intl/lib/date_symbols.dart (revision 13712)
+++ pkg/intl/lib/date_symbols.dart (working copy)
@@ -24,7 +24,7 @@
List<int> WEEKENDRANGE;
int FIRSTWEEKCUTOFFDAY;
- DateSymbols([this.NAME,
+ DateSymbols({this.NAME,
this.ERAS,
Lasse Reichstein Nielsen 2012/10/17 14:56:10 Indentation? It was bad before too, but still.
regis 2012/10/17 19:58:16 Done.
this.ERANAMES,
this.NARROWMONTHS,
@@ -51,7 +51,7 @@
this.AVAILABLEFORMATS,
this.FIRSTDAYOFWEEK,
this.WEEKENDRANGE,
- this.FIRSTWEEKCUTOFFDAY]);
+ this.FIRSTWEEKCUTOFFDAY});
// TODO(alanknight): Replace this with use of a more general serialization
// facility once one is available. Issue 4926.

Powered by Google App Engine
This is Rietveld 408576698