]> source.dussan.org Git - aspectj.git/commitdiff
Fix 107299 (windows full but not absolute paths) by not prefixing files that exist...
authorwisberg <wisberg>
Sat, 15 Oct 2005 03:20:41 +0000 (03:20 +0000)
committerwisberg <wisberg>
Sat, 15 Oct 2005 03:20:41 +0000 (03:20 +0000)
util/src/org/aspectj/util/ConfigParser.java

index 4f4e0e2bace1de5d32c346784f7af6d4655aee86..81b9127e9f714468083f3a562f584a4c94b6bc58 100644 (file)
@@ -217,7 +217,7 @@ public class ConfigParser {
     private File makeFile(File dir, String name) {
         name = name.replace('/', File.separatorChar);
         File ret = new File(name);
-        if (dir != null && !ret.isAbsolute()) { 
+        if (!ret.exists() && (dir != null) && !ret.isAbsolute()) { 
           ret = new File(dir, name);
         }
         try {