From 03bf746918d2238212bb9aaa9fdf304113043053 Mon Sep 17 00:00:00 2001 From: Johnni Winther Date: Tue, 15 Nov 2016 13:19:29 +0100 Subject: [PATCH] Remove static clues from spawn_uri_child_isolate.dart - the tests should be able to work without it. R=sigmund@google.com Review URL: https://codereview.chromium.org/2497293003 . --- tests/isolate/spawn_uri_child_isolate.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/isolate/spawn_uri_child_isolate.dart b/tests/isolate/spawn_uri_child_isolate.dart index 57f1dde7a64..81f40f9bb9d 100644 --- a/tests/isolate/spawn_uri_child_isolate.dart +++ b/tests/isolate/spawn_uri_child_isolate.dart @@ -4,9 +4,8 @@ // Child isolate code to be spawned from a URI to this file. library SpawnUriChildIsolate; -import 'dart:isolate'; -void main(List args, SendPort replyTo) { +void main(List args, replyTo) { var data = args[0]; replyTo.send('re: $data'); }