removed TODO comment and formatted

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@683128 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Josh Micich 2008-08-06 06:20:59 +00:00
parent 28313438f6
commit 1459d3eb3b

View File

@ -37,7 +37,7 @@ import org.apache.poi.util.LittleEndian;
* @author Danny Mui (dmui at apache dot org) * @author Danny Mui (dmui at apache dot org)
*/ */
public abstract class PageBreakRecord extends Record { public abstract class PageBreakRecord extends Record {
private static final boolean IS_EMPTY_RECORD_WRITTEN = false; //TODO - flip private static final boolean IS_EMPTY_RECORD_WRITTEN = false;
private static final int[] EMPTY_INT_ARRAY = { }; private static final int[] EMPTY_INT_ARRAY = { };
private List _breaks; private List _breaks;
@ -217,7 +217,6 @@ public abstract class PageBreakRecord extends Record {
return (Break)_breakMap.get(rowKey); return (Break)_breakMap.get(rowKey);
} }
public final int[] getBreaks() { public final int[] getBreaks() {
int count = getNumBreaks(); int count = getNumBreaks();
if (count < 1) { if (count < 1) {