Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 2779 invoked from network); 23 Aug 2010 16:15:41 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 23 Aug 2010 16:15:41 -0000 Received: (qmail 15785 invoked by uid 500); 23 Aug 2010 16:15:41 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 15712 invoked by uid 500); 23 Aug 2010 16:15:41 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 15705 invoked by uid 99); 23 Aug 2010 16:15:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Aug 2010 16:15:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Aug 2010 16:15:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 42FF82388A2C; Mon, 23 Aug 2010 16:14:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r988174 - /ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/IvyResolver.java Date: Mon, 23 Aug 2010 16:14:23 -0000 To: notifications@ant.apache.org From: hibou@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100823161423.42FF82388A2C@eris.apache.org> 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(); } }