| Index: lib/coreimpl/date.dart
|
| diff --git a/lib/coreimpl/date.dart b/lib/coreimpl/date.dart
|
| index 6aba63f61b6a63fa450d190838d393285a791c0b..afc82935b63be0ec9257d569b89123a71a42d802 100644
|
| --- a/lib/coreimpl/date.dart
|
| +++ b/lib/coreimpl/date.dart
|
| @@ -90,7 +90,7 @@ class DateImplementation implements Date {
|
| int compareTo(Date other)
|
| => millisecondsSinceEpoch.compareTo(other.millisecondsSinceEpoch);
|
|
|
| - int hashCode() => millisecondsSinceEpoch;
|
| + int get hashCode => millisecondsSinceEpoch;
|
|
|
| Date toLocal() {
|
| if (isUtc) {
|
|
|