From 0469fee078bab31748f2929f475f1a7533c9be2e Mon Sep 17 00:00:00 2001 From: Javen O'Neal Date: Thu, 2 Mar 2017 18:47:28 +0000 Subject: [PATCH] bug 60787: remove calls to System.out.println. Thanks to Kamile Demirel. 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 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/java/org/apache/poi/ss/util/CellUtil.java b/src/java/org/apache/poi/ss/util/CellUtil.java index 3dad83aab6..c35cba4050 100644 --- a/src/java/org/apache/poi/ss/util/CellUtil.java +++ b/src/java/org/apache/poi/ss/util/CellUtil.java @@ -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); }