Removed useless check

This commit is contained in:
Georgy Litvinov 2020-01-14 19:56:55 +01:00
parent 5256b06d20
commit 53f704d133

View file

@ -28,7 +28,7 @@ public class PageSplitter {
//System.out.println("splitSoftPageBreak ");
//Necessary check if node is an Element
if ((child.getNodeType() == Node.ELEMENT_NODE) && containsSPB(child)){
if (containsSPB(child)){
String nodeName = child.getNodeName();
//Create Duplicate Node!
Element childFirstPart = (Element) child.cloneNode(false);