diff --git a/src/java.xml/share/classes/javax/xml/parsers/DocumentBuilder.java b/src/java.xml/share/classes/javax/xml/parsers/DocumentBuilder.java index ee893cb5892ef..f9d5aa9108cdc 100644 --- a/src/java.xml/share/classes/javax/xml/parsers/DocumentBuilder.java +++ b/src/java.xml/share/classes/javax/xml/parsers/DocumentBuilder.java @@ -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 IllegalArgumentException is thrown if the - * URI is null null. + * URI is null. * * @param uri The location of the content to be parsed. * @@ -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 IllegalArgumentException is thrown if the - * File is null null. + * File is null. * * @param f The file containing the XML to parse. * @@ -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 IllegalArgumentException is thrown if the - * InputSource is null null. + * InputSource is null. * * @param is InputSource containing the content to be parsed. *