Index: tests/isolate/mandel_isolate_test.dart |
diff --git a/tests/isolate/mandel_isolate_test.dart b/tests/isolate/mandel_isolate_test.dart |
index 2cd3cb5bcce79126821f325aee67ba90580e2e6f..16db3c0ed72eb8c53e9482f14470627b1516ae98 100644 |
--- a/tests/isolate/mandel_isolate_test.dart |
+++ b/tests/isolate/mandel_isolate_test.dart |
@@ -3,6 +3,7 @@ |
// BSD-style license that can be found in the LICENSE file. |
library MandelIsolateTest; |
+ |
import 'dart:async'; |
import 'dart:isolate'; |
import 'dart:math'; |
@@ -27,9 +28,7 @@ void main([args, port]) { |
}); |
} |
- |
class MandelbrotState { |
- |
MandelbrotState() { |
_result = new List<List<int>>(N); |
_lineProcessedBy = new List<LineProcessorClient>(N); |
@@ -89,7 +88,6 @@ class MandelbrotState { |
Completer<bool> _validated; |
} |
- |
class LineProcessorClient { |
MandelbrotState _state; |
int _id; |