From f51347e6c045584422b3adf0fc37645576c7b2c5 Mon Sep 17 00:00:00 2001 From: wisberg Date: Fri, 9 May 2003 07:24:29 +0000 Subject: [PATCH] Backing out the change I made to add the output directory to the classpath. This is wrong because we should resolve types wrt the cached classes in the weaver. But if this change were left in, the test cases just added to ajcTestsFailing.xml pass. --- .../ajdt/internal/core/builder/AjBuildConfig.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java index 339fc8eb9..51676039d 100644 --- a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java +++ b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java @@ -263,11 +263,11 @@ public class AjBuildConfig { // XXX needs bootclasspath? full.add(((File)i.next()).getAbsolutePath()); } full.addAll(getClasspath()); - if (null != outputDir) { - full.add(outputDir.getAbsolutePath()); - } else if (null != outputJar) { - full.add(outputJar.getAbsolutePath()); - } +// if (null != outputDir) { +// full.add(outputDir.getAbsolutePath()); +// } else if (null != outputJar) { +// full.add(outputJar.getAbsolutePath()); +// } return full; } -- 2.39.5