File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
test/functional/J9 Exclude File Support/src/com/oti/j9/exclude Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -255,10 +255,10 @@ private String _scan_attribute_value() throws XMLException
255
255
256
256
XMLStringBuffer buffer = new XMLStringBuffer ();
257
257
258
- do {
258
+ while ( _fScan != '"' ) {
259
259
buffer .append (_fScan );
260
260
scan_char ();
261
- } while ( _fScan != '"' );
261
+ }
262
262
263
263
// Advance past the final quote
264
264
scan_char ();
@@ -396,6 +396,9 @@ private void _scan_element_or_instruction() throws XMLException
396
396
Hashtable attributes = _scan_attributes ();
397
397
398
398
// Notify the content handler
399
+ if (VERBOSE ) {
400
+ System .out .format ("%nAbout to start <%s> at level %d%n" , elementName , _fLevel + 1 );
401
+ }
399
402
_fDocumentHandler .xmlStartElement (elementName , attributes );
400
403
_fLevel ++;
401
404
You can’t perform that action at this time.
0 commit comments