From: Andrew C. Oliver Date: Thu, 4 Jul 2002 04:48:17 +0000 (+0000) Subject: discovered that dotted border constant was wrong... reversed with another X-Git-Tag: REL_1_10~258 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4ad5c6ab996694d65221558d59b84843e986de4c;p=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 --- diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java b/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java index 0b3db6d8e3..70ec27b169 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java @@ -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