Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 64718 invoked from network); 7 Jun 2004 14:13:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 7 Jun 2004 14:13:23 -0000 Received: (qmail 38950 invoked by uid 500); 7 Jun 2004 14:13:25 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 38800 invoked by uid 500); 7 Jun 2004 14:13:24 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 38786 invoked by uid 500); 7 Jun 2004 14:13:24 -0000 Received: (qmail 38776 invoked by uid 99); 7 Jun 2004 14:13:23 -0000 Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Mon, 07 Jun 2004 07:13:23 -0700 Received: (qmail 79965 invoked by uid 1146); 7 Jun 2004 12:26:17 -0000 Date: 7 Jun 2004 12:26:17 -0000 Message-ID: <20040607122617.79964.qmail@minotaur.apache.org> From: bodewig@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Zip.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N bodewig 2004/06/07 05:26:17 Modified: src/main/org/apache/tools/ant/taskdefs Zip.java Log: indentation Revision Changes Path 1.127 +2 -2 ant/src/main/org/apache/tools/ant/taskdefs/Zip.java Index: Zip.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Zip.java,v retrieving revision 1.126 retrieving revision 1.127 diff -u -r1.126 -r1.127 --- Zip.java 7 Jun 2004 12:26:03 -0000 1.126 +++ Zip.java 7 Jun 2004 12:26:17 -0000 1.127 @@ -918,13 +918,13 @@ String[] directories = rs.getIncludedDirectories(); for (int j = 0; j < directories.length; j++) { if (!"".equals(directories[0]) || !skipEmptyNames) { - resources.addElement(rs.getResource(directories[j])); + resources.addElement(rs.getResource(directories[j])); } } String[] files = rs.getIncludedFiles(); for (int j = 0; j < files.length; j++) { if (!"".equals(files[0]) || !skipEmptyNames) { - resources.addElement(rs.getResource(files[j])); + resources.addElement(rs.getResource(files[j])); } } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org