Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 13DB9200C2B for ; Thu, 2 Mar 2017 19:47:31 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 12519160B6F; Thu, 2 Mar 2017 18:47:31 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5BAEF160B6A for ; Thu, 2 Mar 2017 19:47:30 +0100 (CET) Received: (qmail 69928 invoked by uid 500); 2 Mar 2017 18:47:29 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 69919 invoked by uid 99); 2 Mar 2017 18:47:29 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Mar 2017 18:47:29 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id EF9D43A0158 for ; Thu, 2 Mar 2017 18:47:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1785185 - /poi/trunk/src/java/org/apache/poi/ss/util/CellUtil.java Date: Thu, 02 Mar 2017 18:47:28 -0000 To: commits@poi.apache.org From: onealj@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170302184728.EF9D43A0158@svn01-us-west.apache.org> archived-at: Thu, 02 Mar 2017 18:47:31 -0000 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: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org