File tree 1 file changed +0
-4
lines changed
src/main/java/org/jboss/staxmapper
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,6 @@ public void run(int arg) throws XMLStreamException {
346
346
public void writeComment (final String data ) throws XMLStreamException {
347
347
runAttrQueue ();
348
348
nl ();
349
- nl ();
350
349
indent ();
351
350
final StringBuilder b = new StringBuilder (data .length ());
352
351
final Iterator <String > i = Spliterator .over (data , '\n' );
@@ -427,21 +426,18 @@ public void writeEntityRef(final String name) throws XMLStreamException {
427
426
@ Override
428
427
public void writeStartDocument () throws XMLStreamException {
429
428
delegate .writeStartDocument ();
430
- nl ();
431
429
state = START_DOCUMENT ;
432
430
}
433
431
434
432
@ Override
435
433
public void writeStartDocument (final String version ) throws XMLStreamException {
436
434
delegate .writeStartDocument (version );
437
- nl ();
438
435
state = START_DOCUMENT ;
439
436
}
440
437
441
438
@ Override
442
439
public void writeStartDocument (final String encoding , final String version ) throws XMLStreamException {
443
440
delegate .writeStartDocument (encoding , version );
444
- nl ();
445
441
state = START_DOCUMENT ;
446
442
}
447
443
You can’t perform that action at this time.
0 commit comments