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
|
// Apply properties to body
|
||||||
if (!props.isEmpty()) {
|
if (!props.isEmpty()) {
|
||||||
buf.append(sIndent)
|
buf.append(sIndent);
|
||||||
.append("body {").append(props.toString()).append("}").append(config.prettyPrint() ? "\n" : " ");
|
buf.append("body {");
|
||||||
|
buf.append(props.toString());
|
||||||
|
buf.append("}");
|
||||||
|
buf.append(config.prettyPrint() ? "\n" : " ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue