From ace7982898b7de5c821f0b34314b0ea303732967 Mon Sep 17 00:00:00 2001 From: Javen O'Neal Date: Mon, 4 Apr 2016 23:26:44 +0000 Subject: [PATCH] rearrange BORDER_DOTTED and BORDER_HAIR git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1737751 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/poi/ss/usermodel/CellStyle.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/poi/ss/usermodel/CellStyle.java b/src/java/org/apache/poi/ss/usermodel/CellStyle.java index e91d19d0f3..644e813407 100644 --- a/src/java/org/apache/poi/ss/usermodel/CellStyle.java +++ b/src/java/org/apache/poi/ss/usermodel/CellStyle.java @@ -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(); -} \ No newline at end of file +} -- 2.39.5