| Index: runtime/bin/vmservice/running_isolate.dart
|
| diff --git a/runtime/bin/vmservice/running_isolate.dart b/runtime/bin/vmservice/running_isolate.dart
|
| deleted file mode 100644
|
| index 3dd4839675cd57b80bef44181849e9cc27ed47c7..0000000000000000000000000000000000000000
|
| --- a/runtime/bin/vmservice/running_isolate.dart
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -part of vmservice;
|
| -
|
| -class RunningIsolate implements MessageRouter {
|
| - final int portId;
|
| - final SendPort sendPort;
|
| - final String name;
|
| -
|
| - RunningIsolate(this.portId, this.sendPort, this.name);
|
| -
|
| - Future<String> route(Message message) {
|
| - // Send message to isolate.
|
| - return message.send(sendPort);
|
| - }
|
| -}
|
|
|