| Index: runtime/lib/date_patch.dart
|
| diff --git a/runtime/lib/date_patch.dart b/runtime/lib/date_patch.dart
|
| index 750b60d928149cf45ca127c6f02ea92f05a9caf3..b83e96bb77759de62a6ffa9efeac9ff1de100d22 100644
|
| --- a/runtime/lib/date_patch.dart
|
| +++ b/runtime/lib/date_patch.dart
|
| @@ -183,7 +183,7 @@ patch class DateTime {
|
| // Simplify calculations by working with zero-based month.
|
| --month;
|
| // Deal with under and overflow.
|
| - year += (month / 12).floor().toInt();
|
| + year += (month / 12).floor();
|
| month = month % 12;
|
|
|
| // First compute the seconds in UTC, independent of the [isUtc] flag. If
|
|
|