Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 41218 invoked from network); 1 May 2008 17:01:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 May 2008 17:01:05 -0000 Received: (qmail 27581 invoked by uid 500); 1 May 2008 17:01:06 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 27521 invoked by uid 500); 1 May 2008 17:01:06 -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 27510 invoked by uid 99); 1 May 2008 17:01:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 May 2008 10:01:06 -0700 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; Thu, 01 May 2008 17:00:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 61652238887B; Thu, 1 May 2008 10:00:44 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r652580 - in /cxf/branches/2.0.x-fixes: ./ rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/ArrayType.java Date: Thu, 01 May 2008 17:00:43 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080501170044.61652238887B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Thu May 1 10:00:43 2008 New Revision: 652580 URL: http://svn.apache.org/viewvc?rev=652580&view=rev Log: Merged revisions 652552 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r652552 | bimargulies | 2008-05-01 11:14:37 -0400 (Thu, 01 May 2008) | 2 lines Fix CXF-1564 ........ Modified: cxf/branches/2.0.x-fixes/ (props changed) cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/ArrayType.java Propchange: cxf/branches/2.0.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/ArrayType.java URL: http://svn.apache.org/viewvc/cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/ArrayType.java?rev=652580&r1=652579&r2=652580&view=diff ============================================================================== --- cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/ArrayType.java (original) +++ cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/basic/ArrayType.java Thu May 1 10:00:43 2008 @@ -266,8 +266,10 @@ } else { type.writeObject(value, cwriter, context); } - - cwriter.close(); + + if (type.isWriteOuter()) { + cwriter.close(); + } } @Override