8297385: Remove duplicated null typos in javadoc

Reviewed-by: dfuchs, rriggs
This commit is contained in:
Dongxu Wang 2022-11-25 05:55:19 +00:00 committed by Yi Yang
parent 1fb9dadb6a
commit 0ed8b337ea

View File

@ -155,7 +155,7 @@ public abstract class DocumentBuilder {
* Parse the content of the given URI as an XML document
* and return a new DOM {@link Document} object.
* An <code>IllegalArgumentException</code> is thrown if the
* URI is <code>null</code> null.
* URI is <code>null</code>.
*
* @param uri The location of the content to be parsed.
*
@ -182,7 +182,7 @@ public abstract class DocumentBuilder {
* Parse the content of the given file as an XML document
* and return a new DOM {@link Document} object.
* An <code>IllegalArgumentException</code> is thrown if the
* <code>File</code> is <code>null</code> null.
* <code>File</code> is <code>null</code>.
*
* @param f The file containing the XML to parse.
*
@ -210,7 +210,7 @@ public abstract class DocumentBuilder {
* Parse the content of the given input source as an XML document
* and return a new DOM {@link Document} object.
* An <code>IllegalArgumentException</code> is thrown if the
* <code>InputSource</code> is <code>null</code> null.
* <code>InputSource</code> is <code>null</code>.
*
* @param is InputSource containing the content to be parsed.
*