Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2008-10-03 19:49:41 +0000
committerPascal Rapicault2008-10-03 19:49:41 +0000
commit811213ddbbdb799c992e0d19ad52cabdb2701766 (patch)
tree260efe3f54b9f619f5475a9d33a69e70e9306212 /bundles/org.eclipse.equinox.p2.publisher/src_ant/org/eclipse/equinox/internal
parent1bc38fc40c1febfb0aacc8ece5bf88a63a65ee9a (diff)
downloadrt.equinox.p2-811213ddbbdb799c992e0d19ad52cabdb2701766.tar.gz
rt.equinox.p2-811213ddbbdb799c992e0d19ad52cabdb2701766.tar.xz
rt.equinox.p2-811213ddbbdb799c992e0d19ad52cabdb2701766.zip
Bug 225324 - [updateSite] Need to add progress monitoring.v20081007
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.publisher/src_ant/org/eclipse/equinox/internal')
-rw-r--r--bundles/org.eclipse.equinox.p2.publisher/src_ant/org/eclipse/equinox/internal/p2/publisher/ant/PublisherTask.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.publisher/src_ant/org/eclipse/equinox/internal/p2/publisher/ant/PublisherTask.java b/bundles/org.eclipse.equinox.p2.publisher/src_ant/org/eclipse/equinox/internal/p2/publisher/ant/PublisherTask.java
index 307ef0a78..a78a15c74 100644
--- a/bundles/org.eclipse.equinox.p2.publisher/src_ant/org/eclipse/equinox/internal/p2/publisher/ant/PublisherTask.java
+++ b/bundles/org.eclipse.equinox.p2.publisher/src_ant/org/eclipse/equinox/internal/p2/publisher/ant/PublisherTask.java
@@ -15,6 +15,7 @@ import java.net.MalformedURLException;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Task;
import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.equinox.internal.provisional.p2.core.ProvisionException;
import org.eclipse.equinox.p2.publisher.*;
import org.eclipse.equinox.p2.publisher.eclipse.EclipseInstallAction;
@@ -67,7 +68,7 @@ public class PublisherTask extends Task {
}
createVersionAdvice();
IPublisherAction[] actions = createActions();
- IStatus result = new Publisher(getInfo()).publish(actions);
+ IStatus result = new Publisher(getInfo()).publish(actions, new NullProgressMonitor());
// TODO hack assignments to keep the compiler from whining about the unreferenced privates.
Object o = bundles;

Back to the top