Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 25456 invoked from network); 17 Jun 2010 13:12:08 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 17 Jun 2010 13:12:08 -0000 Received: (qmail 16282 invoked by uid 500); 16 Jun 2010 23:45:28 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 16225 invoked by uid 500); 16 Jun 2010 23:45:27 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 16218 invoked by uid 99); 16 Jun 2010 23:45:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Jun 2010 23:45:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Jun 2010 23:45:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 631802388980; Wed, 16 Jun 2010 23:44:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r955432 - in /cxf/branches/2.2.x-fixes: ./ rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BigDecimalType.java Date: Wed, 16 Jun 2010 23:44:39 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100616234439.631802388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Wed Jun 16 23:44:39 2010 New Revision: 955432 URL: http://svn.apache.org/viewvc?rev=955432&view=rev Log: Merged revisions 955205 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r955205 | bimargulies | 2010-06-16 07:36:44 -0400 (Wed, 16 Jun 2010) | 1 line CXF-2847: checkstyle ........ Modified: cxf/branches/2.2.x-fixes/ (props changed) cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BigDecimalType.java Propchange: cxf/branches/2.2.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BigDecimalType.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BigDecimalType.java?rev=955432&r1=955431&r2=955432&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BigDecimalType.java (original) +++ cxf/branches/2.2.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/BigDecimalType.java Wed Jun 16 23:44:39 2010 @@ -44,6 +44,6 @@ public class BigDecimalType extends Type @Override public void writeObject(final Object object, final MessageWriter writer, final Context context) { - writer.writeValue(((BigDecimal) object).toPlainString()); + writer.writeValue(((BigDecimal)object).toPlainString()); } }