whitespace

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717162 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-11-30 04:36:17 +00:00
parent 71b587ef36
commit b58839e4b0
1 changed files with 5 additions and 5 deletions

View File

@ -226,11 +226,11 @@ public interface Row extends Iterable<Cell> {
RETURN_BLANK_AS_NULL(),
CREATE_NULL_AS_BLANK();
private int NEXT_ID = 1;
public final int id;
private MissingCellPolicy() {
this.id = NEXT_ID++;
}
private int NEXT_ID = 1;
public final int id;
private MissingCellPolicy() {
this.id = NEXT_ID++;
}
}
/** Missing cells are returned as null, Blank cells are returned as normal */
public static final MissingCellPolicy RETURN_NULL_AND_BLANK = MissingCellPolicy.RETURN_NULL_AND_BLANK;