bug fix on snapshot generation after testing

This commit is contained in:
Grahame Grieve 2024-09-22 11:24:30 -04:00
parent 6314ad61bb
commit c143f7adff
3 changed files with 22 additions and 2 deletions

View File

@ -1,7 +1,17 @@
## Validator Changes
* no changes
* Work around problem with language value set being marked experimental
* Fix validation id/idref to resolve in document if in a document
* Fix various issues rendering and validating additional bindings with usage contexts
* Upgrade lock management in Package Cache
## Other code changes
* no changes
* Fix case typo on Consent.provision in R4
* Fix R3 Quantity.copyValues()
* Remove debugging code
* Add more debugging to validation failure
* Add support for active only to VSAC importer
* Add r4b support to Package Version Generation
* Fix argument confusion in format in time validation

View File

@ -4579,6 +4579,7 @@ public class ProfileUtilities {
public void setMessages(List<ValidationMessage> messages) {
if (messages != null) {
this.messages = messages;
wantThrowExceptions = false;
}
}

View File

@ -44,6 +44,8 @@ import org.w3c.dom.events.MutationEvent;
import org.xml.sax.Attributes;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
import org.xml.sax.SAXNotRecognizedException;
import org.xml.sax.SAXNotSupportedException;
import org.xml.sax.XMLReader;
import org.xml.sax.helpers.LocatorImpl;
import org.xml.sax.helpers.XMLFilterImpl;
@ -71,6 +73,13 @@ public class XmlLocationAnnotator extends XMLFilterImpl {
((EventTarget) dom).addEventListener("DOMNodeInserted", modListener, true);
}
@Override
public void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException {
if (!name.equals("http://javax.xml.xmlconstants/property/accessExternalDTD")) {
super.setProperty(name, value);
}
}
@Override
public void setDocumentLocator(Locator locator) {
super.setDocumentLocator(locator);