Skip to content

Commit

Permalink
Remove superfluous space after comment-attribute in XML export
Browse files Browse the repository at this point in the history
  • Loading branch information
ernstblechaPT authored and azoitl committed Feb 11, 2025
1 parent 0434c95 commit 4f8372f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ protected void writeAttributeRaw(final String attributeName, final String attrib
osWriter.write(attributeName);
osWriter.write("=\""); //$NON-NLS-1$
osWriter.write(fullyEscapeValue(attributeValue));
osWriter.write("\" "); //$NON-NLS-1$
osWriter.write("\""); //$NON-NLS-1$
} catch (final IOException e) {
throw new XMLStreamException("Could not write raw attribute", e); //$NON-NLS-1$
}
Expand Down

0 comments on commit 4f8372f

Please sign in to comment.