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

Unified Diff: lib/coreimpl/stopwatch_implementation.dart

Issue 10908066: - Removed named constructor Stopwatch.start() due to conflict with instance methods start(). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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
Index: lib/coreimpl/stopwatch_implementation.dart
===================================================================
--- lib/coreimpl/stopwatch_implementation.dart (revision 11786)
+++ lib/coreimpl/stopwatch_implementation.dart (working copy)
@@ -15,9 +15,6 @@
int _stop;
StopwatchImplementation() : _start = null, _stop = null {}
- StopwatchImplementation.start() : _start = null, _stop = null {
- start();
- }
void start() {
if (_start === null) {

Powered by Google App Engine
This is Rietveld 408576698