mirror of https://github.com/apache/poi.git
discovered that dotted border constant was wrong... reversed with another
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
042869febb
commit
4ad5c6ab99
|
@ -173,7 +173,7 @@ public class HSSFCellStyle
|
|||
* dot border
|
||||
*/
|
||||
|
||||
public final static short BORDER_DOTTED = 0x4;
|
||||
public final static short BORDER_HAIR = 0x4;
|
||||
|
||||
/**
|
||||
* Thick border
|
||||
|
@ -191,7 +191,7 @@ public class HSSFCellStyle
|
|||
* hair-line border
|
||||
*/
|
||||
|
||||
public final static short BORDER_HAIR = 0x7;
|
||||
public final static short BORDER_DOTTED = 0x7;
|
||||
|
||||
/**
|
||||
* Medium dashed border
|
||||
|
|
Loading…
Reference in New Issue