generator: set adjustMultilineComment to false when compact is true - fixes #2008

This commit is contained in:
Sebastian McKenzie 2015-07-15 20:18:27 +01:00
parent afacd62738
commit 1abaf66ac2

View File

@ -67,6 +67,10 @@ class CodeGenerator {
}
}
if (format.compact) {
format.indent.adjustMultilineComment = false;
}
return format;
}