Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 17716 invoked from network); 22 Oct 2008 16:07:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Oct 2008 16:07:46 -0000 Received: (qmail 71244 invoked by uid 500); 22 Oct 2008 16:07:48 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 71225 invoked by uid 500); 22 Oct 2008 16:07:48 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 71216 invoked by uid 99); 22 Oct 2008 16:07:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Oct 2008 09:07:48 -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; Wed, 22 Oct 2008 16:06:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F39592388920; Wed, 22 Oct 2008 09:07:24 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r707111 - /harmony/enhanced/classlib/trunk/modules/pack200/src/main/java5/org/apache/harmony/unpack200/Pack200PackerAdapter.java Date: Wed, 22 Oct 2008 16:07:24 -0000 To: commits@harmony.apache.org From: sjanuary@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081022160724.F39592388920@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sjanuary Date: Wed Oct 22 09:07:24 2008 New Revision: 707111 URL: http://svn.apache.org/viewvc?rev=707111&view=rev Log: Pack200 - update Java 5 class to use new Archive constructor Modified: harmony/enhanced/classlib/trunk/modules/pack200/src/main/java5/org/apache/harmony/unpack200/Pack200PackerAdapter.java Modified: harmony/enhanced/classlib/trunk/modules/pack200/src/main/java5/org/apache/harmony/unpack200/Pack200PackerAdapter.java URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/pack200/src/main/java5/org/apache/harmony/unpack200/Pack200PackerAdapter.java?rev=707111&r1=707110&r2=707111&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/pack200/src/main/java5/org/apache/harmony/unpack200/Pack200PackerAdapter.java (original) +++ harmony/enhanced/classlib/trunk/modules/pack200/src/main/java5/org/apache/harmony/unpack200/Pack200PackerAdapter.java Wed Oct 22 09:07:24 2008 @@ -52,7 +52,7 @@ "Must specify both input and output streams"); completed(0); try { - new org.apache.harmony.pack200.Archive(in, out).pack(); + new org.apache.harmony.pack200.Archive(in, out, true).pack(); } catch (Pack200Exception e) { throw new IOException("Failed to pack Jar:" + String.valueOf(e)); }