diff -r 0b47455de59b -r 07212a29787a src/java.xml/share/classes/javax/xml/datatype/DatatypeFactory.java
--- a/src/java.xml/share/classes/javax/xml/datatype/DatatypeFactory.java Tue Mar 26 16:26:33 2019 +0100
+++ b/src/java.xml/share/classes/javax/xml/datatype/DatatypeFactory.java Fri Mar 29 18:00:31 2019 +0000
@@ -183,7 +183,7 @@
* it can use the factory to configure and obtain datatype instances.
*
*
- * Tip for Trouble-shooting
+ * Tip for Trouble-shooting
* Setting the {@code jaxp.debug} system property will cause
* this method to print a lot of debug messages
* to {@code System.err} about what it is doing and where it is looking at.
diff -r 0b47455de59b -r 07212a29787a src/java.xml/share/classes/javax/xml/parsers/DocumentBuilderFactory.java
--- a/src/java.xml/share/classes/javax/xml/parsers/DocumentBuilderFactory.java Tue Mar 26 16:26:33 2019 +0100
+++ b/src/java.xml/share/classes/javax/xml/parsers/DocumentBuilderFactory.java Fri Mar 29 18:00:31 2019 +0000
@@ -118,7 +118,7 @@
* configure and obtain parser instances.
*
*
- *
Tip for Trouble-shooting
+ * Tip for Trouble-shooting
*
* Setting the {@code jaxp.debug} system property will cause
* this method to print a lot of debug messages
@@ -154,7 +154,7 @@
* it can use the factory to configure and obtain parser instances.
*
*
- *
Tip for Trouble-shooting
+ * Tip for Trouble-shooting
* Setting the {@code jaxp.debug} system property will cause
* this method to print a lot of debug messages
* to {@code System.err} about what it is doing and where it is looking at.
@@ -549,7 +549,7 @@
* exception when the {@link #newDocumentBuilder()} is invoked.
*
*
- *
Note for implementors
+ * Note for implementors
*
*
* A parser must be able to work with any {@link Schema}
diff -r 0b47455de59b -r 07212a29787a src/java.xml/share/classes/javax/xml/parsers/SAXParserFactory.java
--- a/src/java.xml/share/classes/javax/xml/parsers/SAXParserFactory.java Tue Mar 26 16:26:33 2019 +0100
+++ b/src/java.xml/share/classes/javax/xml/parsers/SAXParserFactory.java Fri Mar 29 18:00:31 2019 +0000
@@ -123,7 +123,7 @@
*
*
*
- *
Tip for Trouble-shooting
+ * Tip for Trouble-shooting
*
* Setting the {@code jaxp.debug} system property will cause
* this method to print a lot of debug messages
@@ -161,7 +161,7 @@
* it can use the factory to configure and obtain parser instances.
*
*
- *
Tip for Trouble-shooting
+ * Tip for Trouble-shooting
* Setting the {@code jaxp.debug} system property will cause
* this method to print a lot of debug messages
* to {@code System.err} about what it is doing and where it is looking at.
@@ -389,7 +389,7 @@
* Such configuration will cause a {@link SAXException}
* exception when those properties are set on a {@link SAXParser}.
*
- *
Note for implementors
+ * Note for implementors
*
* A parser must be able to work with any {@link Schema}
* implementation. However, parsers and schemas are allowed
diff -r 0b47455de59b -r 07212a29787a src/java.xml/share/classes/javax/xml/transform/TransformerFactory.java
--- a/src/java.xml/share/classes/javax/xml/transform/TransformerFactory.java Tue Mar 26 16:26:33 2019 +0100
+++ b/src/java.xml/share/classes/javax/xml/transform/TransformerFactory.java Fri Mar 29 18:00:31 2019 +0000
@@ -140,7 +140,7 @@
* {@code TransformerFactory} it can use the factory to configure
* and obtain transformer instances.
*
- *
Tip for Trouble-shooting
+ * Tip for Trouble-shooting
* Setting the {@code jaxp.debug} system property will cause
* this method to print a lot of debug messages
* to {@code System.err} about what it is doing and where it is looking at.
diff -r 0b47455de59b -r 07212a29787a src/java.xml/share/classes/javax/xml/validation/SchemaFactory.java
--- a/src/java.xml/share/classes/javax/xml/validation/SchemaFactory.java Tue Mar 26 16:26:33 2019 +0100
+++ b/src/java.xml/share/classes/javax/xml/validation/SchemaFactory.java Fri Mar 29 18:00:31 2019 +0000
@@ -206,7 +206,7 @@
*
*
If everything fails, {@link IllegalArgumentException} will be thrown.
*
- *
Tip for Trouble-shooting:
+ *
Tip for Trouble-shooting:
* See {@link java.util.Properties#load(java.io.InputStream)} for
* exactly how a property file is parsed. In particular, colons ':'
* need to be escaped in a property file, so make sure schema language
@@ -259,7 +259,7 @@
* It gives more control to the application as it can specify which provider
* should be loaded.
*
- *
Tip for Trouble-shooting
+ * Tip for Trouble-shooting
* Setting the {@code jaxp.debug} system property will cause
* this method to print a lot of debug messages
* to {@code System.err} about what it is doing and where it is looking at.
@@ -717,7 +717,7 @@
* to abort the further processing by throwing it. If an error handler is not set,
* the callee will throw the first error it finds in the sources.
*
- *
W3C XML Schema 1.0
+ * W3C XML Schema 1.0
*
* The resulting schema contains components from the specified sources.
* The same result would be achieved if all these sources were
@@ -737,7 +737,7 @@
* specified in the section 5.1 of the XML Schema spec, then
* the error must be reported to the {@link ErrorHandler}.
*
- *
RELAX NG
+ * RELAX NG
*
* For RELAX NG, this method must throw {@link UnsupportedOperationException}
* if {@code schemas.length!=1}.
@@ -797,7 +797,7 @@
* make sure that features, such as secure processing, are explicitly
* set in both places.
*
- *
W3C XML Schema 1.0
+ * W3C XML Schema 1.0
*
* For XML Schema, this method creates a {@link Schema} object that
* performs validation by using location hints specified in documents.
@@ -815,7 +815,7 @@
* vulnerability to denial-of-service attacks.
*
*
- *
RELAX NG
+ * RELAX NG
*
* RELAX NG does not support this operation.
*
diff -r 0b47455de59b -r 07212a29787a src/java.xml/share/classes/javax/xml/xpath/XPathFactory.java
--- a/src/java.xml/share/classes/javax/xml/xpath/XPathFactory.java Tue Mar 26 16:26:33 2019 +0100
+++ b/src/java.xml/share/classes/javax/xml/xpath/XPathFactory.java Fri Mar 29 18:00:31 2019 +0000
@@ -239,7 +239,7 @@
* should be loaded.
*
*
- * Tip for Trouble-shooting
+ * Tip for Trouble-shooting
* Setting the jaxp.debug
system property will cause
* this method to print a lot of debug messages
* to System.err
about what it is doing and where it is looking at.