Fixed NPE

This commit is contained in:
Georgy Litvinov 2020-04-20 18:07:35 +02:00
parent abba63ef65
commit a982c83e66

View file

@ -202,8 +202,10 @@ public class TextStyleParser extends StyleWithPropertiesParser {
StyleWithProperties style;
style = ofr.getTextStyle(visitedStyleName);
Properties props = new Properties(";");
cssText(style, props, true);
cssHyperlink(style, props);
if (style != null) {
cssText(style, props, true);
cssHyperlink(style, props);
}
String visitedAnchorDeclarationBlock = props.toString();
return visitedAnchorDeclarationBlock;
}