Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 42673 invoked from network); 28 Aug 2006 20:00:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Aug 2006 20:00:11 -0000 Received: (qmail 28654 invoked by uid 500); 28 Aug 2006 20:00:05 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 28617 invoked by uid 500); 28 Aug 2006 20:00:05 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 28603 invoked by uid 500); 28 Aug 2006 20:00:05 -0000 Received: (qmail 28580 invoked by uid 99); 28 Aug 2006 20:00:05 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Aug 2006 13:00:05 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Aug 2006 13:00:04 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 414951A981A; Mon, 28 Aug 2006 12:59:44 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r437807 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Ant.java Date: Mon, 28 Aug 2006 19:59:43 -0000 To: ant-cvs@apache.org From: mbenson@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060828195944.414951A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mbenson Date: Mon Aug 28 12:59:41 2006 New Revision: 437807 URL: http://svn.apache.org/viewvc?rev=437807&view=rev Log: some ws Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Ant.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Ant.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Ant.java?rev=437807&r1=437806&r2=437807&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Ant.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Ant.java Mon Aug 28 12:59:41 2006 @@ -1,5 +1,5 @@ /* - * Copyright 2000-2005 The Apache Software Foundation + * Copyright 2000-2006 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -287,7 +287,7 @@ reinit(); } - if ((dir == null) && (inheritAll)) { + if (dir == null && inheritAll) { dir = getProject().getBaseDir(); } @@ -297,7 +297,7 @@ newProject.setBaseDir(dir); if (savedDir != null) { // has been set explicitly - newProject.setInheritedProperty(MagicNames.PROJECT_BASEDIR , + newProject.setInheritedProperty(MagicNames.PROJECT_BASEDIR, dir.getAbsolutePath()); } } else { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org