Bugfix NPE.

This commit is contained in:
Georgy Litvinov 2019-04-20 11:59:12 +03:00
parent 4459eeba78
commit d81af813b4

View file

@ -353,7 +353,7 @@ public class TextConverter extends ConverterHelper {
} }
} }
if (head != null && style == null){ if (head != null && style == null){
StyleWithProperties headStyle = ofr.getParStyle(Misc.getAttribute(para,XMLString.TEXT_STYLE_NAME)); StyleWithProperties headStyle = ofr.getParStyle(Misc.getAttribute(head,XMLString.TEXT_STYLE_NAME));
if (headStyle != null) { if (headStyle != null) {
newPageNumberProperty = headStyle.getParProperty(XMLString.STYLE_PAGE_NUMBER, true); newPageNumberProperty = headStyle.getParProperty(XMLString.STYLE_PAGE_NUMBER, true);
} }