You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2014/04/26 14:29:34 UTC

svn commit: r1590230 - in /ant/ivy/ivyde/trunk: doc/release-notes.html org.apache.ivyde.eclipse/src/java/org/apache/ivyde/internal/eclipse/resolve/IvyResolveJob.java

Author: hibou
Date: Sat Apr 26 12:29:34 2014
New Revision: 1590230

URL: http://svn.apache.org/r1590230
Log:
IVYDE-362: Typo in IvyResolveJob (thanks to Nicolas Gavalda)

Modified:
    ant/ivy/ivyde/trunk/doc/release-notes.html
    ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/internal/eclipse/resolve/IvyResolveJob.java

Modified: ant/ivy/ivyde/trunk/doc/release-notes.html
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/doc/release-notes.html?rev=1590230&r1=1590229&r2=1590230&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/doc/release-notes.html (original)
+++ ant/ivy/ivyde/trunk/doc/release-notes.html Sat Apr 26 12:29:34 2014
@@ -98,6 +98,7 @@ Here is the list of people who have cont
 <li>Gregory Fernandez</li>
 <li>Thomas Friol</li>
 <li>Troy Gaines</li>
+<li>Nicolas Gavalda</li>
 <li>Eugene Goldfarb</li>
 <li>Matt Goldspink</li>
 <li>Will Gorman</li>
@@ -125,6 +126,7 @@ List of changes since <a href="/ivy/ivyd
 <ul>
     <li>FIX: xml bomb in workspace causes hang in Ivy code during Search or Synchronize operations (IVYDE-354) (thanks to Matt Hillsdon)</li>
     <li>FIX: Deadlock in classpath container (IVYDE-361) (thanks to Carsten Pfeiffer)</li>
+    <li>FIX: Typo in IvyResolveJob (IVYDE-362) (thanks to Nicolas Gavalda)</li>
 </ul>
 <ul>
     <li>NEW: add support for OSGi 'Bundle-Classpath' directive (Ivy 2.4.0-rc1 is required)</li>

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/internal/eclipse/resolve/IvyResolveJob.java
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/internal/eclipse/resolve/IvyResolveJob.java?rev=1590230&r1=1590229&r2=1590230&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/internal/eclipse/resolve/IvyResolveJob.java (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/internal/eclipse/resolve/IvyResolveJob.java Sat Apr 26 12:29:34 2014
@@ -302,7 +302,7 @@ public class IvyResolveJob extends Job {
                 return true;
             case IStatus.OK:
             case IStatus.INFO:
-                IvyDEMessage.info("Successuful resolve of " + request);
+                IvyDEMessage.info("Successful resolve of " + request);
                 break;
             case IStatus.ERROR:
                 IvyDEMessage.warn("Error on resolve of " + request + ": " + status[0].getMessage());