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 .
This commit is contained in:
Johnni Winther 2016-11-15 13:19:29 +01:00
parent 128727744c
commit 03bf746918

View file

@ -4,9 +4,8 @@
// Child isolate code to be spawned from a URI to this file.
library SpawnUriChildIsolate;
import 'dart:isolate';
void main(List<String> args, SendPort replyTo) {
void main(List<String> args, replyTo) {
var data = args[0];
replyTo.send('re: $data');
}