aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/ss/usermodel/Row.java
diff options
context:
space:
mode:
authorJaven O'Neal <onealj@apache.org>2015-11-30 04:36:17 +0000
committerJaven O'Neal <onealj@apache.org>2015-11-30 04:36:17 +0000
commit0a02cc5053b8b3a0944878d947e6cea21fc92c75 (patch)
tree67bab3ce8c38f81cfc8cb06f688a4ee5837c306b /src/java/org/apache/poi/ss/usermodel/Row.java
parentaadd45c22e34e21f13c194b57a3214b8dfa2bea7 (diff)
downloadpoi-0a02cc5053b8b3a0944878d947e6cea21fc92c75.tar.gz
poi-0a02cc5053b8b3a0944878d947e6cea21fc92c75.zip
whitespace
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717162 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ss/usermodel/Row.java')
-rw-r--r--src/java/org/apache/poi/ss/usermodel/Row.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/poi/ss/usermodel/Row.java b/src/java/org/apache/poi/ss/usermodel/Row.java
index f3ea9c9c1a..1aae2f78d7 100644
--- a/src/java/org/apache/poi/ss/usermodel/Row.java
+++ b/src/java/org/apache/poi/ss/usermodel/Row.java
@@ -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;