From: aclement Date: Thu, 21 Dec 2006 13:22:41 +0000 (+0000) Subject: test and fix for 168840: incremental compilation and inpath X-Git-Tag: Root_extensions~65 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e5f15ac120710e8a08c9af3795d5a1e75ea69ebc;p=aspectj.git test and fix for 168840: incremental compilation and inpath --- diff --git a/ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java b/ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java index 871cd5df5..d8c3a18b7 100644 --- a/ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java +++ b/ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java @@ -630,6 +630,9 @@ public class CompilerAdapter { join(config.getSourceRoots(), properties.getSourceRoots()); join(config.getInJars(), properties.getInJars()); join(config.getInpath(),properties.getInpath()); + // bug 168840 - calling 'setInPath(..)' creates BinarySourceFiles which + // are used to see if there have been changes in classes on the inpath + if (config.getInpath() != null) config.setInPath(config.getInpath()); config.setSourcePathResources(properties.getSourcePathResources()); join(config.getAspectpath(), properties.getAspectPath()); }