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 0ec62b1cc36b14573472d61d601ad80531a60fdf..f6e1a77318a9ede144021655579cb51efe09c4ee 100644 |
--- a/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java |
+++ b/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java |
@@ -24,21 +24,11 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration { |
} |
@Override |
- public boolean developerModeChecks() { |
- return delegate.developerModeChecks(); |
- } |
- |
- @Override |
public List<DartCompilationPhase> getPhases() { |
return delegate.getPhases(); |
} |
@Override |
- public List<Backend> getBackends() { |
- return delegate.getBackends(); |
- } |
- |
- @Override |
public CompilerMetrics getCompilerMetrics() { |
return delegate.getCompilerMetrics(); |
} |
@@ -69,26 +59,11 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration { |
} |
@Override |
- public File getOutputFilename() { |
- return delegate.getOutputFilename(); |
- } |
- |
- @Override |
public File getOutputDirectory() { |
return delegate.getOutputDirectory(); |
} |
@Override |
- public boolean checkOnly() { |
- return delegate.checkOnly(); |
- } |
- |
- @Override |
- public boolean expectEntryPoint() { |
- return delegate.expectEntryPoint(); |
- } |
- |
- @Override |
public LibrarySource getSystemLibraryFor(String importSpec) { |
return delegate.getSystemLibraryFor(importSpec); |
} |