| Index: sdk/lib/core/date_time.dart
|
| diff --git a/sdk/lib/core/date_time.dart b/sdk/lib/core/date_time.dart
|
| index 1acd412cc7c21792b056aa6ba3f63dcd7d558668..5b26fc8151f658791b3b88bb936a3ea3d4855230 100644
|
| --- a/sdk/lib/core/date_time.dart
|
| +++ b/sdk/lib/core/date_time.dart
|
| @@ -135,7 +135,7 @@ class DateTime {
|
| int minute = parseIntOrZero(match[5]);
|
| int second = parseIntOrZero(match[6]);
|
| bool addOneMillisecond = false;
|
| - int millisecond = (parseDoubleOrZero(match[7]) * 1000).round().toInt();
|
| + int millisecond = (parseDoubleOrZero(match[7]) * 1000).round();
|
| if (millisecond == 1000) {
|
| addOneMillisecond = true;
|
| millisecond = 999;
|
|
|