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 |