Browse Source

test and fix for 168840: incremental compilation and inpath

tags/Root_extensions
aclement 17 years ago
parent
commit
e5f15ac120
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java

+ 3
- 0
ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java View File

@@ -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());
}

Loading…
Cancel
Save