Return-Path: X-Original-To: apmail-felix-commits-archive@www.apache.org Delivered-To: apmail-felix-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1DE451090C for ; Wed, 26 Feb 2014 15:58:14 +0000 (UTC) Received: (qmail 80635 invoked by uid 500); 26 Feb 2014 15:58:13 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 80570 invoked by uid 500); 26 Feb 2014 15:58:11 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 80562 invoked by uid 99); 26 Feb 2014 15:58:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Feb 2014 15:58:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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, 26 Feb 2014 15:58:08 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D56282388860; Wed, 26 Feb 2014 15:57:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1572113 - /felix/trunk/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java Date: Wed, 26 Feb 2014 15:57:46 -0000 To: commits@felix.apache.org From: fmeschbe@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140226155746.D56282388860@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: fmeschbe Date: Wed Feb 26 15:57:46 2014 New Revision: 1572113 URL: http://svn.apache.org/r1572113 Log: FELIX-4437 Pass the correct ZIP status to the InventoryPrinterHandler Modified: felix/trunk/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java Modified: felix/trunk/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java URL: http://svn.apache.org/viewvc/felix/trunk/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java?rev=1572113&r1=1572112&r2=1572113&view=diff ============================================================================== --- felix/trunk/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java (original) +++ felix/trunk/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java Wed Feb 26 15:57:46 2014 @@ -93,7 +93,7 @@ public class ZipConfigurationWriter exte final ZipEntry entry = new ZipEntry(baseName.concat(".txt")); entry.setTime(System.currentTimeMillis()); this.zip.putNextEntry(entry, Format.TEXT); - handler.print(this, Format.TEXT, false); + handler.print(this, Format.TEXT, true); this.flush(); this.zip.closeEntry(); }