make instance variable final

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1779551 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2017-01-20 02:16:58 +00:00
parent a9436e9789
commit 47e81bd78c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public enum PageOrder {
OVER_THEN_DOWN(2);
private int order;
private final int order;
private PageOrder(int order) {