rearrange BORDER_DOTTED and BORDER_HAIR

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1737751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-04-04 23:26:44 +00:00
parent 15261f7413
commit 8e1b343761

View File

@ -113,7 +113,7 @@ public interface CellStyle {
* dot border
*/
short BORDER_HAIR = 0x7;
short BORDER_DOTTED = 0x4;
/**
* Thick border
@ -131,7 +131,7 @@ public interface CellStyle {
* hair-line border
*/
short BORDER_DOTTED = 0x4;
short BORDER_HAIR = 0x7;
/**
* Medium dashed border
@ -722,4 +722,4 @@ public interface CellStyle {
* it to fit if this text is too long?
*/
public boolean getShrinkToFit();
}
}