Browse Source

pointcutdoctor stuff removed - cause chaos on the build machine

tags/V1_5_4rc1
aclement 16 years ago
parent
commit
b1b1d16d69

+ 0
- 1
ajde.core/.classpath View 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>

+ 0
- 9
ajde.core/src/org/aspectj/ajde/core/AjCompiler.java View 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
*/

+ 0
- 9
ajde.core/src/org/aspectj/ajde/core/internal/AjdeCoreBuildManager.java View 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
*/

Loading…
Cancel
Save