Return-Path: Delivered-To: apmail-ant-notifications-archive@locus.apache.org Received: (qmail 61343 invoked from network); 2 Dec 2007 19:48:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Dec 2007 19:48:49 -0000 Received: (qmail 84215 invoked by uid 500); 2 Dec 2007 19:48:37 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 84190 invoked by uid 500); 2 Dec 2007 19:48:37 -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 84181 invoked by uid 99); 2 Dec 2007 19:48:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Dec 2007 11:48:37 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Dec 2007 19:48:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 915051A9832; Sun, 2 Dec 2007 11:48:28 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r600363 - /ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/resolver/FileSystemResolver.java Date: Sun, 02 Dec 2007 19:48:28 -0000 To: notifications@ant.apache.org From: xavier@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071202194828.915051A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: xavier Date: Sun Dec 2 11:48:27 2007 New Revision: 600363 URL: http://svn.apache.org/viewvc?rev=600363&view=rev Log: fix exception message Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/resolver/FileSystemResolver.java Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/resolver/FileSystemResolver.java URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/resolver/FileSystemResolver.java?rev=600363&r1=600362&r2=600363&view=diff ============================================================================== --- ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/resolver/FileSystemResolver.java (original) +++ ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/resolver/FileSystemResolver.java Sun Dec 2 11:48:27 2007 @@ -143,7 +143,7 @@ ModuleRevisionId module, boolean overwrite) throws IOException { if (supportTransaction()) { if (transactionTempDir != null) { - throw new IllegalStateException("a transaction is only started and not closed!"); + throw new IllegalStateException("a transaction is already started and not closed!"); } overwriteTransaction = overwrite; if (overwriteTransaction) {