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 2008/05/13 16:26:46 UTC

svn commit: r655878 - /ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathInitializer.java

Author: hibou
Date: Tue May 13 07:26:45 2008
New Revision: 655878

URL: http://svn.apache.org/viewvc?rev=655878&view=rev
Log:
Use a constructor which exists in the Eclipse 3.2 plateform

Modified:
    ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathInitializer.java

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathInitializer.java
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathInitializer.java?rev=655878&r1=655877&r2=655878&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathInitializer.java (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathInitializer.java Tue May 13 07:26:45 2008
@@ -71,7 +71,7 @@
                 // now refresh the container to be synchronized with the ivy.xml
                 ((IvyClasspathContainer) container).scheduleRefresh(false);
             } catch (Exception ex) {
-                IStatus status = new Status(IStatus.ERROR, IvyPlugin.ID,
+                IStatus status = new Status(IStatus.ERROR, IvyPlugin.ID, IStatus.OK,
                         "Unable to set container for " + containerPath.toString(), ex);
                 throw new CoreException(status);
             }