Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: frog/lib/date_implementation.dart

Issue 9963029: Fix some warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (due to error messages during upload) Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « frog/lib/corelib_impl.dart ('k') | frog/lib/string_implementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « frog/lib/corelib_impl.dart ('k') | frog/lib/string_implementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698