Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 34005 invoked from network); 27 Feb 2009 07:25:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Feb 2009 07:25:15 -0000 Received: (qmail 8587 invoked by uid 500); 27 Feb 2009 07:25:14 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 8574 invoked by uid 500); 27 Feb 2009 07:25:14 -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 8565 invoked by uid 99); 27 Feb 2009 07:25:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Feb 2009 23:25:14 -0800 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; Fri, 27 Feb 2009 07:25:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AD23F2388962; Fri, 27 Feb 2009 07:24:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r748416 - /ant/core/trunk/src/main/org/apache/tools/zip/AbstractUnicodeExtraField.java Date: Fri, 27 Feb 2009 07:24:51 -0000 To: notifications@ant.apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090227072451.AD23F2388962@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Fri Feb 27 07:24:51 2009 New Revision: 748416 URL: http://svn.apache.org/viewvc?rev=748416&view=rev Log: fix self-assignment Modified: ant/core/trunk/src/main/org/apache/tools/zip/AbstractUnicodeExtraField.java (contents, props changed) Modified: ant/core/trunk/src/main/org/apache/tools/zip/AbstractUnicodeExtraField.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/zip/AbstractUnicodeExtraField.java?rev=748416&r1=748415&r2=748416&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/zip/AbstractUnicodeExtraField.java (original) +++ ant/core/trunk/src/main/org/apache/tools/zip/AbstractUnicodeExtraField.java Fri Feb 27 07:24:51 2009 @@ -91,7 +91,7 @@ * in the central directory of the zip file to set. */ public void setNameCRC32(long nameCRC32) { - nameCRC32 = nameCRC32; + this.nameCRC32 = nameCRC32; data = null; } @@ -106,7 +106,7 @@ * @param unicodeName The utf-8 encoded name to set. */ public void setUnicodeName(byte[] unicodeName) { - unicodeName = unicodeName; + this.unicodeName = unicodeName; data = null; } Propchange: ant/core/trunk/src/main/org/apache/tools/zip/AbstractUnicodeExtraField.java ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Feb 27 07:24:51 2009 @@ -1,2 +1,2 @@ /ant/core/trunk/src/main/org/apache/tools/zip/AbstractUnicodeExtraField.java:738844,739300,741089 -/commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/AbstractUnicodeExtraField.java:746933,748063,748133 +/commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/AbstractUnicodeExtraField.java:746933,748063,748133,748288