diff --git a/beautify/beautify-css-mod.js b/beautify/beautify-css-mod.js index c2e90f72..b5baa1fd 100644 --- a/beautify/beautify-css-mod.js +++ b/beautify/beautify-css-mod.js @@ -401,17 +401,12 @@ if (!ch) { break; } else if (ch === '/' && peek() === '*') { /* css comment */ - var header = indentLevel === 0; - - if (isAfterNewline || header) { + if (isAfterNewline) { print.newLine(); } print.text(eatComment()); print.newLine(); - if (header) { - print.newLine(true); - } } else if (ch === '/' && peek() === '/') { // single line comment if (!isAfterNewline && last_top_ch !== '{') { print.trim();