Name: rmT116609 Date: 11/22/2002
FULL PRODUCT VERSION :
java version "1.4.0_02"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0_02-b02)
Java HotSpot(TM) Client VM (build 1.4.0_02-b02, mixed mode)
FULL OPERATING SYSTEM VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
The code for the echoText() method has a syntax error on
http://java.sun.com/webservices/docs/1.0/tutorial/doc/JAXPSAX4.html
This line is missing a terminating semi-colon:
String s = ""+textBuffer
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Browse to http://java.sun.com/webservices/docs/1.0/tutorial/doc/JAXPSAX4.html
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
private void echoText() throws SAXException {
if (textBuffer == null) {
return;
}
String s = "" + textBuffer
emit(s);
textBuffer = null;
}
---------- END SOURCE ----------
CUSTOMER WORKAROUND :
Add the semi-colon.
(Review ID: 173353)
======================================================================
FULL PRODUCT VERSION :
java version "1.4.0_02"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0_02-b02)
Java HotSpot(TM) Client VM (build 1.4.0_02-b02, mixed mode)
FULL OPERATING SYSTEM VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
The code for the echoText() method has a syntax error on
http://java.sun.com/webservices/docs/1.0/tutorial/doc/JAXPSAX4.html
This line is missing a terminating semi-colon:
String s = ""+textBuffer
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Browse to http://java.sun.com/webservices/docs/1.0/tutorial/doc/JAXPSAX4.html
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
private void echoText() throws SAXException {
if (textBuffer == null) {
return;
}
String s = "" + textBuffer
emit(s);
textBuffer = null;
}
---------- END SOURCE ----------
CUSTOMER WORKAROUND :
Add the semi-colon.
(Review ID: 173353)
======================================================================