Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8297385: Remove duplicated null typos in javadoc #11311

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -155,7 +155,7 @@ public Document parse(InputStream is, String systemId)
* 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.
*
Expand All @@ -182,7 +182,7 @@ public Document parse(String uri)
* 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.
*
Expand Down Expand Up @@ -210,7 +210,7 @@ public Document parse(File f) throws SAXException, IOException {
* 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.
*
Expand Down