]> source.dussan.org Git - aspectj.git/commitdiff
fixing 2 bugs disclosed by running ajcTests.xml with -ajctaskCompiler: (1) compliance...
authorwisberg <wisberg>
Sun, 25 May 2003 19:23:41 +0000 (19:23 +0000)
committerwisberg <wisberg>
Sun, 25 May 2003 19:23:41 +0000 (19:23 +0000)
These would break only when running from a Javac compiler adapter and using <compilerarg>

build/src/org/aspectj/internal/tools/build/Module.java

index 4233bf1c94168562d87b3df902fd4815b5edc9ef..d2556782e9bbd11098f905e41fe35134e5832fe2 100644 (file)
@@ -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);