Don't add extra newlines after loud comments.

This commit is contained in:
Natalie Weizenbaum 2016-11-02 17:30:28 -07:00
parent 12ec31566f
commit d18ac3c6b4

View File

@ -104,7 +104,7 @@ class _SerializeCssVisitor
var minimumIndentation = _minimumIndentation(node.text);
if (minimumIndentation == null) {
_writeIndentation();
_buffer.writeln(node.text);
_buffer.write(node.text);
return;
}