Author: onealj
Date: Thu Mar  2 18:47:28 2017
New Revision: 1785185

URL: http://svn.apache.org/viewvc?rev=1785185&view=rev
Log:
bug 60787: remove calls to System.out.println. Thanks to Kamile Demirel.

Modified:
    poi/trunk/src/java/org/apache/poi/ss/util/CellUtil.java

Modified: poi/trunk/src/java/org/apache/poi/ss/util/CellUtil.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/CellUtil.java?rev=1785185&r1=1785184&r2=1785185&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/CellUtil.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/CellUtil.java Thu Mar  2 18:47:28 
2017
@@ -522,7 +522,6 @@ public final class CellUtil {
                 log.log(POILogger.WARN, "Deprecation warning: CellUtil 
properties map uses Short values for "
                         + name + ". Should use BorderStyle enums instead.");
             }
-            System.out.println("BorderStyle short usage");
             short code = ((Short) value).shortValue();
             border = BorderStyle.valueOf(code);
         }
@@ -555,7 +554,6 @@ public final class CellUtil {
                 log.log(POILogger.WARN, "Deprecation warning: CellUtil 
properties map uses Short values for "
                         + name + ". Should use FillPatternType enums 
instead.");
             }
-            System.out.println("FillPatternType short usage");
             short code = ((Short) value).shortValue();
             pattern = FillPatternType.forInt(code);
         }
@@ -588,7 +586,6 @@ public final class CellUtil {
                 log.log(POILogger.WARN, "Deprecation warning: CellUtil 
properties map used a Short value for "
                         + name + ". Should use HorizontalAlignment enums 
instead.");
             }
-            System.out.println("HorizontalAlignment short usage");
             short code = ((Short) value).shortValue();
             align = HorizontalAlignment.forInt(code);
         }
@@ -621,7 +618,6 @@ public final class CellUtil {
                 log.log(POILogger.WARN, "Deprecation warning: CellUtil 
properties map used a Short value for "
                         + name + ". Should use VerticalAlignment enums 
instead.");
             }
-            System.out.println("VerticalAlignment usage " + name + " " + 
value);
             short code = ((Short) value).shortValue();
             align = VerticalAlignment.forInt(code);
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to