Removed useless check
This commit is contained in:
parent
5256b06d20
commit
53f704d133
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ public class PageSplitter {
|
||||||
//System.out.println("splitSoftPageBreak ");
|
//System.out.println("splitSoftPageBreak ");
|
||||||
|
|
||||||
//Necessary check if node is an Element
|
//Necessary check if node is an Element
|
||||||
if ((child.getNodeType() == Node.ELEMENT_NODE) && containsSPB(child)){
|
if (containsSPB(child)){
|
||||||
String nodeName = child.getNodeName();
|
String nodeName = child.getNodeName();
|
||||||
//Create Duplicate Node!
|
//Create Duplicate Node!
|
||||||
Element childFirstPart = (Element) child.cloneNode(false);
|
Element childFirstPart = (Element) child.cloneNode(false);
|
||||||
|
|
Loading…
Add table
Reference in a new issue