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

Unified Diff: pkg/mdns/lib/src/native_protocol_client.dart

Issue 1436663002: Avoid a warning due to bug in Dart SDK (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Created 5 years, 1 month 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: pkg/mdns/lib/src/native_protocol_client.dart
diff --git a/pkg/mdns/lib/src/native_protocol_client.dart b/pkg/mdns/lib/src/native_protocol_client.dart
index ffbdd8f5317b25e8c3b7f8f28ce639d53480de79..187997a056fc327941ae8f7ca4afca8b69b514e9 100644
--- a/pkg/mdns/lib/src/native_protocol_client.dart
+++ b/pkg/mdns/lib/src/native_protocol_client.dart
@@ -101,7 +101,7 @@ class NativeProtocolMDnsClient implements MDnsClient {
_sockets.add(socket);
// Join multicast on this interface.
- _incoming.joinMulticast(mDnsAddress, interface);
+ (_incoming as dynamic).joinMulticast(mDnsAddress, interface);
}
_incoming.listen(_handleIncoming);
« 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