| Index: compiler/java/com/google/dart/compiler/DeltaAnalyzer.java
|
| diff --git a/compiler/java/com/google/dart/compiler/DeltaAnalyzer.java b/compiler/java/com/google/dart/compiler/DeltaAnalyzer.java
|
| index c8847fa691455e989c156275db0d123e2c7f3dc2..6bd802c351dd79406988a2499942f3b9926b36ff 100644
|
| --- a/compiler/java/com/google/dart/compiler/DeltaAnalyzer.java
|
| +++ b/compiler/java/com/google/dart/compiler/DeltaAnalyzer.java
|
| @@ -198,18 +198,8 @@ class DeltaAnalyzer {
|
| }
|
|
|
| @Override
|
| - public void compilationError(DartCompilationError event) {
|
| - listener.compilationError(event);
|
| - }
|
| -
|
| - @Override
|
| - public void compilationWarning(DartCompilationError event) {
|
| - listener.compilationWarning(event);
|
| - }
|
| -
|
| - @Override
|
| - public void typeError(DartCompilationError event) {
|
| - listener.typeError(event);
|
| + public void onError(DartCompilationError event) {
|
| + listener.onError(event);
|
| }
|
|
|
| @Override
|
|
|