| Index: pkg/intl/lib/src/date_format_field.dart
|
| diff --git a/pkg/intl/lib/src/date_format_field.dart b/pkg/intl/lib/src/date_format_field.dart
|
| index 3e7c6cf67131d0db9d252b3f4a37b7191bb7f34d..7e210a3b3c13e1e5472f0ec695e6218120f1d128 100644
|
| --- a/pkg/intl/lib/src/date_format_field.dart
|
| +++ b/pkg/intl/lib/src/date_format_field.dart
|
| @@ -378,15 +378,15 @@ class _DateFormatPatternField extends _DateFormatField {
|
|
|
| String formatTimeZoneId(Date date) {
|
| // TODO(alanknight): implement time zone support
|
| - throw new NotImplementedException();
|
| + throw new UnimplementedError();
|
| }
|
|
|
| String formatTimeZone(Date date) {
|
| - throw new NotImplementedException();
|
| + throw new UnimplementedError();
|
| }
|
|
|
| String formatTimeZoneRFC(Date date) {
|
| - throw new NotImplementedException();
|
| + throw new UnimplementedError();
|
| }
|
|
|
| /**
|
|
|