Author: hibou
Date: Mon Aug 23 16:14:22 2010
New Revision: 988174
URL: http://svn.apache.org/viewvc?rev=988174&view=rev
Log:
IVYDE-56:
* fix the display in progress bar
Modified:
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/IvyResolver.java
Modified:
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/IvyResolver.java
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/IvyResolver.java?rev=988174&r1=988173&r2=988174&view=diff
==============================================================================
---
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/IvyResolver.java
(original)
+++
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/IvyResolver.java
Mon Aug 23 16:14:22 2010
@@ -78,9 +78,12 @@ public class IvyResolver {
protected final IProject project;
+ private final List confInput;
+
public IvyResolver(String ivyXmlPath, Ivy ivy, ModuleDescriptor md,
boolean usePreviousResolveIfExist, IProgressMonitor monitor, List
confInput,
IProject project) {
+ this.confInput = confInput;
this.project = project;
this.ivyXmlPath = ivyXmlPath;
this.ivy = ivy;
@@ -268,6 +271,6 @@ public class IvyResolver {
}
public String toString() {
- return ivyXmlPath + confs + " in " + project.getName();
+ return ivyXmlPath + confInput + " in " + project.getName();
}
}