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

Unified Diff: sdk/lib/isolate/isolate.dart

Issue 51393004: Remove deprecated second argument to SendPort.send(). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update isolate.dart. Created 7 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 | « sdk/lib/_internal/lib/isolate_helper.dart ('k') | tests/compiler/dart2js_extra/runtime_type_isolate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/isolate/isolate.dart
diff --git a/sdk/lib/isolate/isolate.dart b/sdk/lib/isolate/isolate.dart
index f7d1aed49d58ada4fac609ea1b8b4c77051f7521..6440bc4201f39779a6b036a2fbe0d4a7f665a6e7 100644
--- a/sdk/lib/isolate/isolate.dart
+++ b/sdk/lib/isolate/isolate.dart
@@ -98,10 +98,8 @@ abstract class SendPort {
* is also possible to send object instances (which would be copied in the
* process). This is currently only supported by the dartvm. For now, the
* dart2js compiler only supports the restricted messages described above.
- *
- * The second argument [replyTo] is deprecated and its value is ignored.
*/
- void send(var message, [SendPort replyTo]);
+ void send(var message);
/**
* Tests whether [other] is a [SendPort] pointing to the same
« no previous file with comments | « sdk/lib/_internal/lib/isolate_helper.dart ('k') | tests/compiler/dart2js_extra/runtime_type_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698