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

Unified Diff: lib/src/channel.dart

Issue 1959433002: Fix all strong-mode errors and warnings. (Closed) Base URL: git@github.com:dart-lang/web_socket_channel.git@master
Patch Set: Created 4 years, 7 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 | « lib/io.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/channel.dart
diff --git a/lib/src/channel.dart b/lib/src/channel.dart
index 9c82c6867547c626be1990380c6819afd3dc977c..6aff42c70863fea1cf68baa7c3d398a256a31e13 100644
--- a/lib/src/channel.dart
+++ b/lib/src/channel.dart
@@ -104,8 +104,8 @@ class WebSocketSink extends DelegatingStreamSink {
final WebSocketImpl _webSocket;
WebSocketSink._(WebSocketImpl webSocket)
- : super(webSocket),
- _webSocket = webSocket;
+ : _webSocket = webSocket,
+ super(webSocket);
/// Closes the web socket connection.
///
« no previous file with comments | « lib/io.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698