BUG-60286 avoid NPE XWPFRun. Didn't add unit test or document...didn't seem to be worth it.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1765863 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9c455cb5c9
commit
e9b4a17d77
@ -1077,7 +1077,7 @@ public class XWPFRun implements ISDTContents, IRunElement, CharacterRun {
|
||||
if (ctfldChar.getFldCharType() == STFldCharType.BEGIN) {
|
||||
if (ctfldChar.getFfData() != null) {
|
||||
for (CTFFCheckBox checkBox : ctfldChar.getFfData().getCheckBoxList()) {
|
||||
if (checkBox.getDefault().getVal() == STOnOff.X_1) {
|
||||
if (checkBox.getDefault() != null && checkBox.getDefault().getVal() == STOnOff.X_1) {
|
||||
text.append("|X|");
|
||||
} else {
|
||||
text.append("|_|");
|
||||
|
Loading…
Reference in New Issue
Block a user