| Index: samples/isolate_html/isolate_sample.dart
|
| diff --git a/samples/isolate_html/isolate_sample.dart b/samples/isolate_html/isolate_sample.dart
|
| index 2d04d1b1f3f8eb1fa4d52bc242c89bdb615fa416..b28b44784415e08175049f555e7dd564cf775e8a 100644
|
| --- a/samples/isolate_html/isolate_sample.dart
|
| +++ b/samples/isolate_html/isolate_sample.dart
|
| @@ -6,7 +6,6 @@ library isolate_sample;
|
|
|
| import 'dart:html';
|
| import 'dart:isolate';
|
| -import 'dart:math';
|
|
|
| /*
|
| * This is a simple sample application showing how to create two isolates
|
| @@ -75,7 +74,7 @@ void isolateMain() {
|
| 'received message: <span class="messageText">"${message}"</span>';
|
| if (div.query('input.replyCheckbox').checked) {
|
| InputElement element = div.query('.delayTextbox');
|
| - int millis = parseInt(element.value);
|
| + int millis = int.parse(element.value);
|
| // TODO(justinfagnani): use Timer when it works in isolates in dart2js
|
| // see: http://dartbug.com/4997
|
| window.setTimeout(() {
|
|
|