Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
package org.apache.daffodil.validation

import java.io.IOException
import java.net.URI
import java.net.URL
import java.util.Properties
import javax.xml.XMLConstants
Expand Down Expand Up @@ -60,7 +61,7 @@ object XercesValidatorFactory {
"invalid configuration: xerces property is empty or not defined"
)
}
val url = new URL(schemaFile)
val url = new URI(schemaFile).toURL
XercesValidator.fromURL(url)
}
}
Expand Down