Browse Source

Merge pull request #818 in CORE/base-third from feature/10.0 to research/10.0

* commit '06b04e4b39f4c0f6ef7954e4c1d0cda26c3e566e':
  无jira任务,合代码错误(多余代码残留)
research/10.0
superman 4 years ago
parent
commit
d61aed7b2b
  1. 11
      fine-itext/src/main/java/com/fr/third/v2/lowagie/text/html/simpleparser/FactoryProperties.java

11
fine-itext/src/main/java/com/fr/third/v2/lowagie/text/html/simpleparser/FactoryProperties.java

@ -132,15 +132,6 @@ public class FactoryProperties {
}
public static void createParagraph(Paragraph p, ChainedProperties props) {
String value = props.getProperty("align");
if (value != null) {
if (value.equalsIgnoreCase("center"))
p.setAlignment(Element.ALIGN_CENTER);
else if (value.equalsIgnoreCase("right"))
p.setAlignment(Element.ALIGN_RIGHT);
else if (value.equalsIgnoreCase("justify"))
p.setAlignment(Element.ALIGN_JUSTIFIED);
}
Map<String, String> bgAttrMap = BackgroundUtil.parseBgAttr4BlockTag(props);
if (null != bgAttrMap) {
for (Map.Entry<String, String> entry : bgAttrMap.entrySet()) {
@ -174,7 +165,7 @@ public class FactoryProperties {
p.setHyphenation(getHyphenation(props));
setParagraphLeading(p, props.getProperty("leading"));
value = props.getProperty("before");
String value = props.getProperty("before");
if (value != null) {
try {
p.setSpacingBefore(Float.parseFloat(value));

Loading…
Cancel
Save