Skip to content

Commit

Permalink
Try fix build again
Browse files Browse the repository at this point in the history
  • Loading branch information
angelozerr committed Nov 8, 2018
1 parent e7fa138 commit a1b91c8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ private String expandSystemId(String path) {
*/
private static boolean isXMLCatalogFileValid(String catalogFile) {
try {
if (new File(catalogFile).exists()) {
return true;
}
return new File(new URI(catalogFile).getPath()).exists();
} catch (URISyntaxException e) {
return new File(catalogFile).exists();
Expand Down

0 comments on commit a1b91c8

Please sign in to comment.