summaryrefslogtreecommitdiffstats
path: root/weaver/testsrc
diff options
context:
space:
mode:
authoracolyer <acolyer>2003-11-11 13:09:14 +0000
committeracolyer <acolyer>2003-11-11 13:09:14 +0000
commit1c6db5d4f24f6ddaee4c48661503a8b7ea516744 (patch)
tree776e942fa9f0bd7ed54a717e7227f8e9a3716480 /weaver/testsrc
parent8c70c5a515a383e0691eeb3a9bc1caa66a0398b5 (diff)
downloadaspectj-1c6db5d4f24f6ddaee4c48661503a8b7ea516744.tar.gz
aspectj-1c6db5d4f24f6ddaee4c48661503a8b7ea516744.zip
Andy Clement's patch for enh 46347: "-inpath"
Diffstat (limited to 'weaver/testsrc')
-rw-r--r--weaver/testsrc/org/aspectj/weaver/bcel/ZipTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/weaver/testsrc/org/aspectj/weaver/bcel/ZipTestCase.java b/weaver/testsrc/org/aspectj/weaver/bcel/ZipTestCase.java
index 1aa65bcfb..5df1e2cfb 100644
--- a/weaver/testsrc/org/aspectj/weaver/bcel/ZipTestCase.java
+++ b/weaver/testsrc/org/aspectj/weaver/bcel/ZipTestCase.java
@@ -56,10 +56,10 @@ public class ZipTestCase extends TestCase {
BcelWeaver weaver = new BcelWeaver(world);
long startTime = System.currentTimeMillis();
- weaver.addJarFile(inFile, new File("."));
+ weaver.addJarFile(inFile, new File("."),false);
if (aspectjar != null) {
if (isInJar) {
- weaver.addJarFile(new File(aspectjar), new File("."));
+ weaver.addJarFile(new File(aspectjar), new File("."),false);
} else {
weaver.addLibraryJarFile(new File(aspectjar));
}