| Index: runtime/lib/isolate_patch.dart
|
| diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
|
| index 686e7f94d64328888eea7e7732eaac2e34777cd8..46e4f4039fb0280e74acec775d4b2dd9a71c2e31 100644
|
| --- a/runtime/lib/isolate_patch.dart
|
| +++ b/runtime/lib/isolate_patch.dart
|
| @@ -113,7 +113,7 @@ class _RawReceivePortImpl implements RawReceivePort {
|
| class _SendPortImpl implements SendPort {
|
| /*--- public interface ---*/
|
| void send(var message) {
|
| - _sendInternal(_id, 0, message);
|
| + _sendInternal(_id, message);
|
| }
|
|
|
| bool operator==(var other) {
|
| @@ -142,8 +142,7 @@ class _SendPortImpl implements SendPort {
|
|
|
| // Forward the implementation of sending messages to the VM. Only port ids
|
| // are being handed to the VM.
|
| - // TODO(14731): Remove replyId argument.
|
| - static _sendInternal(int sendId, int replyId, var message)
|
| + static _sendInternal(int sendId, var message)
|
| native "SendPortImpl_sendInternal_";
|
|
|
| final int _id;
|
|
|