Removed debug statements

This commit is contained in:
Georgy Litvinov 2020-01-22 13:07:35 +01:00
parent 90b31d6a5f
commit ce02c8748f

View file

@ -24,7 +24,6 @@ public class PageSplitter {
int i = 0;
//Loop through the content nodes and split nodes with soft page break
while (i < nodes.getLength()){
System.out.println("IN splitSPB");
Node child = nodes.item(i);
//System.out.println("splitSoftPageBreak ");
@ -86,7 +85,6 @@ public class PageSplitter {
}
i++;
}
System.out.println("splitSPB exit");
//Debug.printNode(onode);
return onode;
}