Skip to content
Features
Business
Explore
Marketplace
Pricing
This repository
Sign in
or
Sign up
Watch
35
Star
328
Fork
220
apache
/
poi
mirrored from
git://git.apache.org/poi.git
Code
Pull requests
11
Projects
0
Insights
Pulse
Graphs
Adding Null Pointer check
#53
Closed
prafulVaishnav
wants to merge 1 commit into
apache
:
trunk
base:
trunk
from
prafulVaishnav
:
vaishnav/issue
Conversation
3
Commits
1
Files changed
1
Changes from
all commits
Commits
Show all changes
1 commit
Select commit
bdee325
Adding Null Pointer check
prafulVaishnav
May 12, 2017
1 file
Jump to file
No files found.
+1
−1
XWPFParagraph.java
...ava/org/apache/poi/xwpf/usermodel/XWPFParagraph.java
+1
−1
Unified
Split
Show comments
View
2
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java
@@ -821,7 +821,7 @@ public boolean isPageBreak() {
CTOnOff
ctPageBreak
=
ppr
.
isSetPageBreakBefore()
?
ppr
.getPageBreakBefore()
:
null
;
if
(ctPageBreak
!=
null
-
&&
ctPageBreak
.
getVal()
.
intValue()
==
STOnOff
.
INT_TRUE
) {
+
&&
ctPageBreak
.
getVal()
!=
null
&&
ctPageBreak
.
getVal()
.
intValue()
==
STOnOff
.
INT_TRUE
) {
return
true
;
}
return
false
;
Toggle all file notes
You can't perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.