< prev index next >

src/java.base/share/classes/jdk/internal/org/xml/sax/helpers/DefaultHandler.java

Print this page

        

*** 341,351 **** * character array. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ContentHandler#characters */ ! public void characters (char ch[], int start, int length) throws SAXException { // no op } --- 341,351 ---- * character array. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ContentHandler#characters */ ! public void characters (char[] ch, int start, int length) throws SAXException { // no op }
*** 364,374 **** * character array. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ContentHandler#ignorableWhitespace */ ! public void ignorableWhitespace (char ch[], int start, int length) throws SAXException { // no op } --- 364,374 ---- * character array. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ContentHandler#ignorableWhitespace */ ! public void ignorableWhitespace (char[] ch, int start, int length) throws SAXException { // no op }
< prev index next >