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 2009/03/31 11:13:37 UTC

svn commit: r760377 - in /ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse: CHANGES.txt src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java

Author: hibou
Date: Tue Mar 31 09:13:32 2009
New Revision: 760377

URL: http://svn.apache.org/viewvc?rev=760377&view=rev
Log:
IVYDE-172:
 - don't trigger an popup error on the ivy.xml field if there is an error in the ivysettings field

Modified:
    ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt
    ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt?rev=760377&r1=760376&r2=760377&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt Tue Mar 31 09:13:32 2009
@@ -29,6 +29,7 @@
 - FIX: Sources attach but Javadocs don't (IVYDE-166)
 - FIX: Branch in repository pattern and defaultBranch (IVYDE-168)
 - FIX: The resolve in workspace is being evicted by transitive dependencies (IVYDE-169)
+- FIX: Error messages when setting path to ivy settings file covers what is being typed in (IVYDE-172)
 
   version 2.0.0 beta1
 ==========================

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java?rev=760377&r1=760376&r2=760377&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java Tue Mar 31 09:13:32 2009
@@ -426,10 +426,10 @@
             conf.ivySettingsLastModified = -1;
             conf.getIvy();
             settingsEditor.setSettingsError(null);
+            checkIvyXmlPath();
         } catch (IvyDEException e) {
             settingsEditor.setSettingsError(e);
         }
-        checkIvyXmlPath();
     }
 
     private void loadFromConf() {