diff options
Diffstat (limited to 'ajde.core')
-rw-r--r-- | ajde.core/.classpath | 1 | ||||
-rw-r--r-- | ajde.core/src/org/aspectj/ajde/core/AjCompiler.java | 9 | ||||
-rw-r--r-- | ajde.core/src/org/aspectj/ajde/core/internal/AjdeCoreBuildManager.java | 9 |
3 files changed, 0 insertions, 19 deletions
diff --git a/ajde.core/.classpath b/ajde.core/.classpath index 30b688fdc..10c7d9acc 100644 --- a/ajde.core/.classpath +++ b/ajde.core/.classpath @@ -9,6 +9,5 @@ <classpathentry exported="true" kind="src" path="/org.aspectj.ajdt.core"/> <classpathentry exported="true" kind="src" path="/org.eclipse.jdt.core"/> <classpathentry kind="lib" path="/lib/junit/junit.jar" sourcepath="/lib/junit/junit-src.jar"/> - <classpathentry combineaccessrules="false" kind="src" path="/weaver"/> <classpathentry kind="output" path="bin"/> </classpath> diff --git a/ajde.core/src/org/aspectj/ajde/core/AjCompiler.java b/ajde.core/src/org/aspectj/ajde/core/AjCompiler.java index 13df1ccc7..9f2672414 100644 --- a/ajde.core/src/org/aspectj/ajde/core/AjCompiler.java +++ b/ajde.core/src/org/aspectj/ajde/core/AjCompiler.java @@ -15,7 +15,6 @@ import org.aspectj.ajdt.internal.core.builder.IncrementalStateManager; import org.aspectj.bridge.IMessage; import org.aspectj.bridge.Message; import org.aspectj.org.eclipse.jdt.internal.compiler.impl.CompilerOptions; -import org.aspectj.weaver.CustomMungerFactory; /** * The class to be used by tools to drive a build. An AjCompiler is created @@ -60,14 +59,6 @@ public class AjCompiler { buildManager = new AjdeCoreBuildManager(this); } - public void setCustomMungerFactory(CustomMungerFactory factory) { - buildManager.setCustomMungerFactory(factory); - } - - public CustomMungerFactory getCustomMungerFactory() { - return buildManager.getCustomMungerFactory(); - } - /** * @return the id for this AjCompiler */ diff --git a/ajde.core/src/org/aspectj/ajde/core/internal/AjdeCoreBuildManager.java b/ajde.core/src/org/aspectj/ajde/core/internal/AjdeCoreBuildManager.java index 49e0085b5..46db93884 100644 --- a/ajde.core/src/org/aspectj/ajde/core/internal/AjdeCoreBuildManager.java +++ b/ajde.core/src/org/aspectj/ajde/core/internal/AjdeCoreBuildManager.java @@ -40,7 +40,6 @@ import org.aspectj.bridge.context.CompilationAndWeavingContext; import org.aspectj.org.eclipse.jdt.internal.compiler.impl.CompilerOptions; import org.aspectj.util.ConfigParser; import org.aspectj.util.LangUtil; -import org.aspectj.weaver.CustomMungerFactory; /** * Build Manager which drives the build for a given AjCompiler. @@ -66,14 +65,6 @@ public class AjdeCoreBuildManager { AsmManager.attemptIncrementalModelRepairs = true; } - public void setCustomMungerFactory(CustomMungerFactory factory) { - ajBuildManager.setCustomMungerFactory(factory); - } - - public CustomMungerFactory getCustomMungerFactory() { - return ajBuildManager.getCustomMungerFactory(); - } - /** * @param buildFresh - true if want to force a full build, false otherwise */ |