| Index: pkg/analyzer/lib/src/task/html_work_manager.dart
|
| diff --git a/pkg/analyzer/lib/src/task/html_work_manager.dart b/pkg/analyzer/lib/src/task/html_work_manager.dart
|
| index faedfb25f7e97d72fc9ecaaf027c23d9a86950aa..218b48ae27e80195fbb9c7fcfea781354751aa59 100644
|
| --- a/pkg/analyzer/lib/src/task/html_work_manager.dart
|
| +++ b/pkg/analyzer/lib/src/task/html_work_manager.dart
|
| @@ -18,7 +18,6 @@ import 'package:analyzer/src/generated/engine.dart'
|
| import 'package:analyzer/src/generated/error.dart';
|
| import 'package:analyzer/src/generated/source.dart';
|
| import 'package:analyzer/src/generated/utilities_collection.dart';
|
| -import 'package:analyzer/src/task/driver.dart';
|
| import 'package:analyzer/src/task/html.dart';
|
| import 'package:analyzer/task/html.dart';
|
| import 'package:analyzer/task/model.dart';
|
| @@ -133,12 +132,10 @@ class HtmlWorkManager implements WorkManager {
|
| // Try to find a new HTML file to analyze.
|
| while (sourceQueue.isNotEmpty) {
|
| Source htmlSource = sourceQueue.first;
|
| - // Maybe done with this library.
|
| if (!_needsComputing(htmlSource, HTML_ERRORS)) {
|
| sourceQueue.remove(htmlSource);
|
| continue;
|
| }
|
| - // Analyze this library.
|
| return new TargetedResult(htmlSource, HTML_ERRORS);
|
| }
|
| // No results to compute.
|
|
|