372806 Command line should accept relative paths for xml config files

This commit is contained in:
Jan Bartel 2012-02-29 18:09:29 +11:00
parent 556ff1a2c6
commit c95da2aa18
1 changed files with 1 additions and 1 deletions

View File

@ -641,7 +641,7 @@ public class Main
}
File xml = new File(xmlFilename);
if (xml.exists() && xml.isFile() && xml.isAbsolute())
if (xml.exists() && xml.isFile())
{
return xml.getAbsolutePath();
}