| Index: compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
|
| diff --git a/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java b/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
|
| index 13b9ef1fd24f55f7cb10e02416e0db30c98fe747..eb2bcfd6b18a473fb719755259e971aaea661c12 100644
|
| --- a/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
|
| +++ b/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
|
| @@ -99,11 +99,6 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration {
|
| }
|
|
|
| @Override
|
| - public boolean printMachineProblems() {
|
| - return delegate.printMachineProblems();
|
| - }
|
| -
|
| - @Override
|
| public boolean collectComments() {
|
| return delegate.collectComments();
|
| }
|
| @@ -117,4 +112,9 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration {
|
| public CompilerOptions getCompilerOptions() {
|
| return delegate.getCompilerOptions();
|
| }
|
| +
|
| + @Override
|
| + public ErrorFormat printErrorFormat() {
|
| + return delegate.printErrorFormat();
|
| + }
|
| }
|
|
|