| Index: frog/lib/date_implementation.dart
|
| diff --git a/frog/lib/date_implementation.dart b/frog/lib/date_implementation.dart
|
| index 817881d69e5679d9f663bde057a8da68b6ddf325..70747d573f7b0628efef723f583a11abca1206f3 100644
|
| --- a/frog/lib/date_implementation.dart
|
| +++ b/frog/lib/date_implementation.dart
|
| @@ -77,7 +77,7 @@ class DateImplementation implements Date {
|
| int minutes = parseIntOrZero(match[5]);
|
| int seconds = parseIntOrZero(match[6]);
|
| bool addOneMillisecond = false;
|
| - int milliseconds = (parseDoubleOrZero(match[7]) * 1000).round();
|
| + int milliseconds = (parseDoubleOrZero(match[7]) * 1000).round().toInt();
|
| if (milliseconds == 1000) {
|
| addOneMillisecond = true;
|
| milliseconds = 999;
|
|
|