Fixed NPE

This commit is contained in:
Georgy Litvinov 2020-02-14 19:57:30 +01:00
parent a033ef618e
commit df172d504d

View file

@ -297,6 +297,9 @@ public class TextStyleParser extends StyleWithPropertiesParser {
//
public void cssText(StyleWithProperties style, Properties props, boolean bInherit) {
if (style == null) {
return;
}
cssTextCommon(style,props,bInherit);
cssTextBackground(style,props,bInherit);
}
@ -304,6 +307,9 @@ public class TextStyleParser extends StyleWithPropertiesParser {
public void cssTextCommon(StyleWithProperties style, Properties props, boolean bInherit) {
String fontName=null,s2=null,s3=null,s4=null;
CSVList val;
if (style == null) {
return;
}
// Font family
if (bConvertFont && (bInherit || style.getProperty(XMLString.STYLE_FONT_NAME,false)!=null)) {