Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 7416 invoked from network); 20 Jan 2010 05:07:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 20 Jan 2010 05:07:39 -0000 Received: (qmail 16145 invoked by uid 500); 20 Jan 2010 05:07:39 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 16068 invoked by uid 500); 20 Jan 2010 05:07:38 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 16059 invoked by uid 99); 20 Jan 2010 05:07:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jan 2010 05:07:38 +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, 20 Jan 2010 05:07:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6832A23889BB; Wed, 20 Jan 2010 05:07:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r901063 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Zip.java Date: Wed, 20 Jan 2010 05:07:11 -0000 To: notifications@ant.apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100120050717.6832A23889BB@eris.apache.org> Author: bodewig Date: Wed Jan 20 05:07:05 2010 New Revision: 901063 URL: http://svn.apache.org/viewvc?rev=901063&view=rev Log: make new zipFile signature final Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Zip.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Zip.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Zip.java?rev=901063&r1=901062&r2=901063&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Zip.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Zip.java Wed Jan 20 05:07:05 2010 @@ -1824,9 +1824,10 @@ * @since Ant 1.8.0 * @throws IOException on error */ - protected void zipFile(InputStream in, ZipOutputStream zOut, String vPath, - long lastModified, File fromArchive, - int mode, ZipExtraField[] extra) + protected final void zipFile(InputStream in, ZipOutputStream zOut, + String vPath, long lastModified, + File fromArchive, int mode, + ZipExtraField[] extra) throws IOException { try { setCurrentExtraFields(extra);