Refactoring
This commit is contained in:
parent
625cbaa031
commit
14b384b115
1 changed files with 5 additions and 2 deletions
|
@ -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" : " ");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue