| Index: sdk/lib/core/date_time.dart
|
| diff --git a/sdk/lib/core/date_time.dart b/sdk/lib/core/date_time.dart
|
| index 38d179eadbfc2a7efc5c522e70fd473a0895c300..eb8f25d473c5c3afc569b65f4d281c33fd0ffebc 100644
|
| --- a/sdk/lib/core/date_time.dart
|
| +++ b/sdk/lib/core/date_time.dart
|
| @@ -230,7 +230,7 @@ class DateTime implements Date {
|
| 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;
|
|
|