| Index: pkg/intl/lib/date_format.dart
|
| ===================================================================
|
| --- pkg/intl/lib/date_format.dart (revision 13446)
|
| +++ pkg/intl/lib/date_format.dart (working copy)
|
| @@ -184,7 +184,7 @@
|
| // the constructor seems awkward, especially with the possibility of
|
| // confusion with the locale. A "fluent" interface with cascading on an
|
| // instance might work better? A list of patterns is also possible.
|
| - _locale = Intl.verifiedLocale(locale);
|
| + _locale = Intl.verifiedLocale(locale, localeExists);
|
| addPattern(newPattern);
|
| }
|
|
|
| @@ -508,7 +508,7 @@
|
| * to use the default.
|
| */
|
| _setLocale(String newLocale) {
|
| - _locale = Intl.verifiedLocale(newLocale);
|
| + _locale = Intl.verifiedLocale(newLocale, localeExists);
|
| }
|
|
|
| /**
|
|
|