Index: frog/lib/date_implementation.dart |
diff --git a/frog/lib/date_implementation.dart b/frog/lib/date_implementation.dart |
index d90f1c7eb447542cd6d3b0f48ba6559d6fc5a502..c3886319201fba95fe298ab39c748aec9fe64baa 100644 |
--- a/frog/lib/date_implementation.dart |
+++ b/frog/lib/date_implementation.dart |
@@ -6,7 +6,7 @@ |
// TODO(jimhug): Making the date value non-lazy might be a good path there. |
class DateImplementation implements Date { |
final int value; |
- final TimeZoneImplementation timeZone; |
+ final TimeZone timeZone; |
factory DateImplementation(int years, |
int month, |
@@ -28,7 +28,7 @@ class DateImplementation implements Date { |
int minutes, |
int seconds, |
int milliseconds, |
- TimeZoneImplementation timeZone) |
+ TimeZone timeZone) |
: this.timeZone = timeZone, |
value = _valueFromDecomposed(years, month, day, |
hours, minutes, seconds, milliseconds, |