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

Unified Diff: sdk/lib/io/secure_server_socket.dart

Issue 128203002: Fix static warnings introduced by library cleanup. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 | « sdk/lib/io/http_impl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/secure_server_socket.dart
diff --git a/sdk/lib/io/secure_server_socket.dart b/sdk/lib/io/secure_server_socket.dart
index 0d645d26c197468d2e3fb6d4bc9dfecd40e4a695..7f928b15e35d20ce96087b211a39cae3fe554a3d 100644
--- a/sdk/lib/io/secure_server_socket.dart
+++ b/sdk/lib/io/secure_server_socket.dart
@@ -253,10 +253,13 @@ class RawSecureServerSocket extends Stream<RawSecureSocket> {
});
}
- void _onError(e, [StackTrace stackTrace]) =>
- _controller.addError(e, stackTrace);
+ void _onError(e, [StackTrace stackTrace]) {
+ _controller.addError(e, stackTrace);
+ }
- void _onDone() => _controller.close();
+ void _onDone() {
+ _controller.close();
+ }
void _onPauseStateChange() {
if (_controller.isPaused) {
« no previous file with comments | « sdk/lib/io/http_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698