commit | 921f8d2cab939a1c1dbed3431933b892a43c9f14 | [log] [tgz] |
---|---|---|
author | Felix Meschberger <fmeschbe@apache.org> | Wed Feb 26 15:57:46 2014 +0000 |
committer | Felix Meschberger <fmeschbe@apache.org> | Wed Feb 26 15:57:46 2014 +0000 |
tree | 679d3502c6cfc32f6bac2eb367a8e665f07b9a0c | |
parent | 0d21e63c3a0e07ea78b4694d39fecb284a115982 [diff] |
FELIX-4437 Pass the correct ZIP status to the InventoryPrinterHandler git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1572113 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java b/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java index 781a1a7..c7c15a6 100644 --- a/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java +++ b/inventory/src/main/java/org/apache/felix/inventory/impl/helper/ZipConfigurationWriter.java
@@ -93,7 +93,7 @@ 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(); }