Author: hibou
Date: Thu Feb 2 20:32:45 2012
New Revision: 1239811
URL: http://svn.apache.org/viewvc?rev=1239811&view=rev
Log:
Set the resolve report before setuping the classpath container (there's some
cloning happening in the setup). It made the Resolve Visualizer to not work.
Modified:
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathResolver.java
Modified:
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathResolver.java
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathResolver.java?rev=1239811&r1=1239810&r2=1239811&view=diff
==============================================================================
---
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathResolver.java
(original)
+++
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyClasspathResolver.java
Thu Feb 2 20:32:45 2012
@@ -36,8 +36,8 @@ public class IvyClasspathResolver extend
*/
public void postBatchResolve() {
if (getClasspathEntries() != null) {
- ivycp.updateClasspathEntries(getClasspathEntries());
ivycp.setResolveReport(getResolveReport());
+ ivycp.updateClasspathEntries(getClasspathEntries());
}
}