There were two errors in the built-in Catalog implementation (JDK-8306055):
A typo in the property name: jdk.xml.jdkCatalog.resolve should have been jdk.xml.jdkcatalog.resolve.
jaxp.properties file was not updated. This is caused by forgetting to copy the file from the test.
These errors did not have an impact on the impl or tests. The typo in the name would have resulted in failing to read the setting in jaxp.properties. But since the property is not currently set in the config file, it's simply ignored.
The change in jaxp.properties was in documentation, in the form of comments, and therefore had no material impact.
A typo in the property name: jdk.xml.jdkCatalog.resolve should have been jdk.xml.jdkcatalog.resolve.
jaxp.properties file was not updated. This is caused by forgetting to copy the file from the test.
These errors did not have an impact on the impl or tests. The typo in the name would have resulted in failing to read the setting in jaxp.properties. But since the property is not currently set in the config file, it's simply ignored.
The change in jaxp.properties was in documentation, in the form of comments, and therefore had no material impact.
- relates to
-
JDK-8306055 Add a built-in Catalog to JDK XML module
- Resolved