mrglavas 2004/06/01 10:20:42 Modified: java/docs faq-dom.xml Log: Fixing Jira Bug #974:
http://nagoya.apache.org/jira/browse/XERCESJ-974 The code samples in the DOM documentation attempt to retrieve an instance of DOMImplementationLS with the "LS-Load" feature. This was changed to "LS". Fixed thanks to the patch by Jonathan Au. Revision Changes Path 1.16 +2 -2 xml-xerces/java/docs/faq-dom.xml Index: faq-dom.xml =================================================================== RCS file: /home/cvs/xml-xerces/java/docs/faq-dom.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- faq-dom.xml 25 Feb 2004 16:22:44 -0000 1.15 +++ faq-dom.xml 1 Jun 2004 17:20:42 -0000 1.16 @@ -81,7 +81,7 @@ DOMImplementationRegistry.newInstance(); DOMImplementationLS impl = - (DOMImplementationLS)registry.getDOMImplementation("LS-Load"); + (DOMImplementationLS)registry.getDOMImplementation("LS"); LSParser builder = impl.createLSParser( DOMImplementationLS.MODE_SYNCHRONOUS, null); @@ -131,7 +131,7 @@ DOMImplementationRegistry registry = DOMImplementationRegistry.newInstance(); DOMImplementationLS impl = - (DOMImplementationLS)registry.getDOMImplementation("LS-Load"); + (DOMImplementationLS)registry.getDOMImplementation("LS"); ... --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]