]> source.dussan.org Git - aspectj.git/commitdiff
Backing out the change I made to add the output directory to the classpath.
authorwisberg <wisberg>
Fri, 9 May 2003 07:24:29 +0000 (07:24 +0000)
committerwisberg <wisberg>
Fri, 9 May 2003 07:24:29 +0000 (07:24 +0000)
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.

org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java

index 339fc8eb910e64b1c7c7a8755370b3505f3d4bf4..51676039d77d7f78c7988cc304b75fcecea4a5c4 100644 (file)
@@ -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;
     }