| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| index a1ae1f461445aa82098ce8e9681ebd4a748a9087..2638b36f8781559e34bc4afeccfcd67a2b7b2bc8 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| @@ -1923,17 +1923,17 @@ public class AnalysisContextImpl implements InternalAnalysisContext {
|
| return new AnalysisResult(getChangeNotices(true), getEnd - getStart, null, -1L);
|
| }
|
| String taskDescription = task.toString();
|
| - if (!reportedLoop && !recentTasks.add(taskDescription)) {
|
| - @SuppressWarnings("resource")
|
| - PrintStringWriter writer = new PrintStringWriter();
|
| - writer.print("Performing repeated task: ");
|
| - writer.println(taskDescription);
|
| - for (String description : recentTasks) {
|
| - writer.print(" ");
|
| - writer.println(description);
|
| - }
|
| - logInformation(writer.toString());
|
| - }
|
| +// if (!reportedLoop && !recentTasks.add(taskDescription)) {
|
| +// @SuppressWarnings("resource")
|
| +// PrintStringWriter writer = new PrintStringWriter();
|
| +// writer.print("Performing repeated task: ");
|
| +// writer.println(taskDescription);
|
| +// for (String description : recentTasks) {
|
| +// writer.print(" ");
|
| +// writer.println(description);
|
| +// }
|
| +// logInformation(writer.toString());
|
| +// }
|
| notifyAboutToPerformTask(taskDescription);
|
| if (TRACE_PERFORM_TASK) {
|
| System.out.println(taskDescription);
|
|
|