diff options
author | wisberg <wisberg> | 2003-05-25 19:23:41 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-05-25 19:23:41 +0000 |
commit | 995364f04e270121b0b1c229e6047c7b2823f3b3 (patch) | |
tree | dd5ce6d9fc35422cf1672cf7b3afd5e394ff6aa3 /build | |
parent | 5692ee0c837cfe5f9e4cf8cd0e53047cb95c2ddf (diff) | |
download | aspectj-995364f04e270121b0b1c229e6047c7b2823f3b3.tar.gz aspectj-995364f04e270121b0b1c229e6047c7b2823f3b3.zip |
fixing 2 bugs disclosed by running ajcTests.xml with -ajctaskCompiler: (1) compliance set incorrectly (-1.3 instead of 1.4) and (2) warn:... form was ignored.
These would break only when running from a Javac compiler adapter and using <compilerarg>
Diffstat (limited to 'build')
-rw-r--r-- | build/src/org/aspectj/internal/tools/build/Module.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/src/org/aspectj/internal/tools/build/Module.java b/build/src/org/aspectj/internal/tools/build/Module.java index 4233bf1c9..d2556782e 100644 --- a/build/src/org/aspectj/internal/tools/build/Module.java +++ b/build/src/org/aspectj/internal/tools/build/Module.java @@ -94,7 +94,6 @@ public class Module { private static void doFindKnownJarAntecedants(Module module, ArrayList known) { Util.iaxIfNull(module, "module"); Util.iaxIfNull(known, "known"); - for (Iterator iter = module.getLibJars().iterator(); iter.hasNext();) { File libJar = (File) iter.next(); if (!skipLibraryJarAntecedant(module, libJar) @@ -393,7 +392,8 @@ public class Module { required.add(req); return true; } else { - messager.error("unable to create required module: " + moduleName); + messager.error("update unable to create required module: " + + moduleName); } } else { // src dir String fullPath = getFullPath(path); |