From 4ad5c6ab996694d65221558d59b84843e986de4c Mon Sep 17 00:00:00 2001 From: "Andrew C. Oliver" Date: Thu, 4 Jul 2002 04:48:17 +0000 Subject: [PATCH] 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 --- src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5