Refactoring

This commit is contained in:
Georgy Litvinov 2020-01-29 13:45:21 +01:00
parent 625cbaa031
commit 14b384b115

View file

@ -207,8 +207,11 @@ public class StyleParser extends Parser {
// Apply properties to body
if (!props.isEmpty()) {
buf.append(sIndent)
.append("body {").append(props.toString()).append("}").append(config.prettyPrint() ? "\n" : " ");
buf.append(sIndent);
buf.append("body {");
buf.append(props.toString());
buf.append("}");
buf.append(config.prettyPrint() ? "\n" : " ");
}
}
}