Index: pkg/analyzer/lib/task/model.dart |
diff --git a/pkg/analyzer/lib/task/model.dart b/pkg/analyzer/lib/task/model.dart |
index 79c922091cba7666a967a87190e6808050ff4174..48e616dd55622fc58d39ab743307e75847badfe5 100644 |
--- a/pkg/analyzer/lib/task/model.dart |
+++ b/pkg/analyzer/lib/task/model.dart |
@@ -154,8 +154,7 @@ abstract class AnalysisTask { |
} on AnalysisException catch (exception, stackTrace) { |
caughtException = new CaughtException(exception, stackTrace); |
AnalysisEngine.instance.logger.logInformation( |
- "Task failed: ${description}", |
- caughtException); |
+ "Task failed: ${description}", caughtException); |
} |
} |
@@ -178,8 +177,7 @@ abstract class AnalysisTask { |
contextName = 'unnamed'; |
} |
AnalysisEngine.instance.instrumentationService.logAnalysisTask( |
- contextName, |
- description); |
+ contextName, description); |
// |
// Gather statistics on the performance of the task. |
// |
@@ -266,8 +264,8 @@ abstract class TaskDescriptor { |
* the instance of [AnalysisTask] thusly described. |
*/ |
factory TaskDescriptor(String name, BuildTask buildTask, |
- CreateTaskInputs inputBuilder, List<ResultDescriptor> results) = |
- TaskDescriptorImpl; |
+ CreateTaskInputs inputBuilder, |
+ List<ResultDescriptor> results) = TaskDescriptorImpl; |
/** |
* Return the builder used to build the inputs to the task. |