]> source.dussan.org Git - aspectj.git/commitdiff
pointcutdoctor stuff removed - cause chaos on the build machine
authoraclement <aclement>
Mon, 3 Dec 2007 17:41:22 +0000 (17:41 +0000)
committeraclement <aclement>
Mon, 3 Dec 2007 17:41:22 +0000 (17:41 +0000)
ajde.core/.classpath
ajde.core/src/org/aspectj/ajde/core/AjCompiler.java
ajde.core/src/org/aspectj/ajde/core/internal/AjdeCoreBuildManager.java

index 30b688fdce29763c436e63e7a4d43d9d352594de..10c7d9acc53f0e31173880d8411d23e7193529eb 100644 (file)
@@ -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>
index 13df1ccc721233b1fe61a3e066a5d5ff71ee76cc..9f267241466d07de2798a62247ca0a94f6adaf2b 100644 (file)
@@ -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
         */
index 49e0085b5fb09228d739e02e21ef9bb3f1025401..46db93884b341c5447d693d364d9652cf4dcf84a 100644 (file)
@@ -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
         */