You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/04/05 01:26:44 UTC

svn commit: r1737751 - /poi/trunk/src/java/org/apache/poi/ss/usermodel/CellStyle.java

Author: onealj
Date: Mon Apr  4 23:26:44 2016
New Revision: 1737751

URL: http://svn.apache.org/viewvc?rev=1737751&view=rev
Log:
rearrange BORDER_DOTTED and BORDER_HAIR

Modified:
    poi/trunk/src/java/org/apache/poi/ss/usermodel/CellStyle.java

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/CellStyle.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/CellStyle.java?rev=1737751&r1=1737750&r2=1737751&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/CellStyle.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/CellStyle.java Mon Apr  4 23:26:44 2016
@@ -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
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org