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

Unified Diff: runtime/lib/developer.dart

Issue 1305583003: removes a return from a void function (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/developer.dart
diff --git a/runtime/lib/developer.dart b/runtime/lib/developer.dart
index 3fa9bffa237b91788a0a31b2f9db44dba798aadb..c4895e48cae2f7760485188cea3425acf080e476 100644
--- a/runtime/lib/developer.dart
+++ b/runtime/lib/developer.dart
@@ -29,14 +29,14 @@ patch void log(String message,
} else {
_nextSequenceNumber = sequenceNumber + 1;
}
- return _log(message,
- time.millisecondsSinceEpoch,
- sequenceNumber,
- level,
- name,
- zone,
- error,
- stackTrace);
+ _log(message,
+ time.millisecondsSinceEpoch,
+ sequenceNumber,
+ level,
+ name,
+ zone,
+ error,
+ stackTrace);
}
int _nextSequenceNumber = 0;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698