]> source.dussan.org Git - poi.git/commitdiff
bug 60787: remove calls to System.out.println. Thanks to Kamile Demirel.
authorJaven O'Neal <onealj@apache.org>
Thu, 2 Mar 2017 18:47:28 +0000 (18:47 +0000)
committerJaven O'Neal <onealj@apache.org>
Thu, 2 Mar 2017 18:47:28 +0000 (18:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1785185 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/util/CellUtil.java

index 3dad83aab6fcbc1e20aac4b26c7c48d471e572ab..c35cba405096f2cc57ad1f69d4d924b8ceeb81d9 100644 (file)
@@ -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);
         }