You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by xa...@apache.org on 2007/12/02 20:48:28 UTC

svn commit: r600363 - /ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/resolver/FileSystemResolver.java

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) {