| Index: sdk/lib/_internal/lib/isolate_helper.dart
|
| diff --git a/sdk/lib/_internal/lib/isolate_helper.dart b/sdk/lib/_internal/lib/isolate_helper.dart
|
| index ce6b5d32074be6c2cf5a69f0416f5d02f5427853..bf3caa2cd203218295a9e72f2b966c186af146a3 100644
|
| --- a/sdk/lib/_internal/lib/isolate_helper.dart
|
| +++ b/sdk/lib/_internal/lib/isolate_helper.dart
|
| @@ -1133,7 +1133,6 @@ class _MessageTraverser {
|
| if (x is List) return visitList(x);
|
| if (x is Map) return visitMap(x);
|
| if (x is SendPort) return visitSendPort(x);
|
| - if (x is SendPortSync) return visitSendPortSync(x);
|
|
|
| // Overridable fallback.
|
| return visitObject(x);
|
| @@ -1143,7 +1142,6 @@ class _MessageTraverser {
|
| visitList(List x);
|
| visitMap(Map x);
|
| visitSendPort(SendPort x);
|
| - visitSendPortSync(SendPortSync x);
|
|
|
| visitObject(Object x) {
|
| // TODO(floitsch): make this a real exception. (which one)?
|
|
|