Removed debug statements
This commit is contained in:
parent
2058006d34
commit
a2ef3f7496
1 changed files with 0 additions and 4 deletions
|
@ -55,7 +55,6 @@ public class Separator {
|
||||||
|
|
||||||
// Get outline level
|
// Get outline level
|
||||||
String sLevel = getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL);
|
String sLevel = getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL);
|
||||||
// System.out.println(sLevel);
|
|
||||||
if (sLevel == null || sLevel.isEmpty()) {
|
if (sLevel == null || sLevel.isEmpty()) {
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
|
@ -63,13 +62,10 @@ public class Separator {
|
||||||
if (title == null || title.isEmpty()) {
|
if (title == null || title.isEmpty()) {
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
// System.out.println(sLevel + "after title");
|
|
||||||
|
|
||||||
int curLevel = Integer.parseInt(sLevel);
|
int curLevel = Integer.parseInt(sLevel);
|
||||||
|
|
||||||
|
|
||||||
if (noSplitNeeded(pageNum, curLevel)) {
|
if (noSplitNeeded(pageNum, curLevel)) {
|
||||||
System.out.println(sLevel + "no split needed");
|
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue