Skip to content

Commit

Permalink
fix special characters in JDF Schema Path
Browse files Browse the repository at this point in the history
  • Loading branch information
meiXXI committed May 9, 2022
1 parent a8412dd commit 7896bf1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class CheckJdfJmfTest implements JmfTest {
jdfValidator.setIgnorePrivate(false)
jdfValidator.level = JDFElement.EnumValidationLevel.Complete
jdfValidator.bValidate = true
jdfValidator.setJDFSchemaLocation(fileService.getJdfSchemaDir().resolve("JDF.xsd").toString())
jdfValidator.setJDFSchemaLocation(new File(fileService.getJdfSchemaDir().resolve("JDF.xsd").toString()));

// run check jdf
XMLDoc xmlDoc = jdfValidator.processSingleStream(
Expand Down

0 comments on commit 7896bf1

Please sign in to comment.