| Index: compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerBench.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerBench.java b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerBench.java
|
| index 3c86b7f350ac97ad7e5cb87740162c6f1dfdae38..c7aed3dc54c9619b6115e39d28dfd8edbb2b4a01 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerBench.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerBench.java
|
| @@ -7,7 +7,6 @@ package com.google.dart.compiler.type;
|
| import com.google.dart.compiler.CommandLineOptions.CompilerOptions;
|
| import com.google.dart.compiler.CompilerConfiguration;
|
| import com.google.dart.compiler.DartArtifactProvider;
|
| -import com.google.dart.compiler.DartCompilationError;
|
| import com.google.dart.compiler.DartCompilationPhase;
|
| import com.google.dart.compiler.DartCompiler;
|
| import com.google.dart.compiler.DartCompilerContext;
|
| @@ -150,15 +149,7 @@ public class TypeAnalyzerBench {
|
| }
|
|
|
| private static DartCompilerListener getListener() {
|
| - return new DartCompilerListener() {
|
| - @Override
|
| - public void onError(DartCompilationError event) {
|
| - }
|
| -
|
| - @Override
|
| - public void unitCompiled(DartUnit unit) {
|
| - }
|
| - };
|
| + return DartCompilerListener.EMPTY;
|
| }
|
|
|
| static class CollectingPhase implements DartCompilationPhase {
|
|
|