Author: maartenc Date: Wed Sep 3 14:31:50 2008 New Revision: 691785 URL: http://svn.apache.org/viewvc?rev=691785&view=rev Log: Slightly changed error message
Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java?rev=691785&r1=691784&r2=691785&view=diff ============================================================================== --- ant/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java (original) +++ ant/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java Wed Sep 3 14:31:50 2008 @@ -271,10 +271,10 @@ ivyEngine = ivy; } catch (ParseException e) { throw new BuildException("impossible to configure ivy:settings with given " - + (file != null ? "file: " + file : "url :" + url) + " :" + e, e); + + (file != null ? "file: " + file : "url: " + url) + " : " + e, e); } catch (IOException e) { throw new BuildException("impossible to configure ivy:settings with given " - + (file != null ? "file: " + file : "url :" + url) + " :" + e, e); + + (file != null ? "file: " + file : "url: " + url) + " : " + e, e); } finally { ivy.getLoggerEngine().popLogger(); }