Skip to content

Commit

Permalink
Backport #105 in 5.3 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 22, 2020
1 parent 6c4a0b7 commit e5433fb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions release-notes/CREDITS
Expand Up @@ -9,3 +9,9 @@ Ioan Marcu (ioanmarcu@github)
* Reported #74, suggested fix: Infinite loop in BijectiveNsMap#addGeneratedMapping
when ctxt.getNamespaceURI(prefix) returns an empty String
(5.2.1)

Colm O hEigeartaigh (coheigea@github)

* Reported #105, contributed fix: W3CSchemaFactory constructor incorrectly references
relaxng
(5.3.1)
4 changes: 4 additions & 0 deletions release-notes/VERSION
Expand Up @@ -8,6 +8,10 @@ Project: woodstox

#78: Shade MSV dependency

5.3.1 (not yet released)

#105: W3CSchemaFactory constructor incorrectly references relaxng

5.3.0 (15-Jul-2019)

#58: Reading comment comments after Root Element closed sometimes throws `NullPointerException`
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/ctc/wstx/msv/W3CSchemaFactory.java
Expand Up @@ -47,7 +47,7 @@ public class W3CSchemaFactory

public W3CSchemaFactory()
{
super(XMLValidationSchema.SCHEMA_ID_RELAXNG);
super(XMLValidationSchema.SCHEMA_ID_W3C_SCHEMA);
}

/*
Expand Down

0 comments on commit e5433fb

Please sign in to comment.