Fixed NPE
This commit is contained in:
parent
a033ef618e
commit
df172d504d
1 changed files with 6 additions and 0 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue