Updated dependencies

This commit is contained in:
Ziver Koc 2015-05-04 16:41:55 +00:00
parent a06debdae3
commit b90d1ec5cf
2 changed files with 13 additions and 4 deletions

View file

@ -84,7 +84,9 @@ public class FileUtil {
if(file!=null && file.exists()){
return file;
}
return new File(findURL(path).toURI());
URL url = findURL(path);
if(url != null)
return new File(url.toURI());
} catch (Exception e) {
e.printStackTrace();
}