Fixed NPE
This commit is contained in:
parent
abba63ef65
commit
a982c83e66
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue