| 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 1d3749037237e4045e26bc6e340751dd471f47e9..a2099b08b34d88233fd18c209a11bf5ed5b8159e 100644
|
| --- a/pkg/intl/lib/src/date_format_field.dart
|
| +++ b/pkg/intl/lib/src/date_format_field.dart
|
| @@ -345,7 +345,7 @@ class _DateFormatPatternField extends _DateFormatField {
|
| }
|
|
|
| String formatQuarter(DateTime date) {
|
| - var quarter = (date.month / 3).truncate().toInt();
|
| + var quarter = (date.month / 3).truncate();
|
| if (width < 4) {
|
| return symbols.SHORTQUARTERS[quarter];
|
| } else {
|
|
|