Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchan2005-09-30 14:24:34 +0000
committerkchan2005-09-30 14:24:34 +0000
commit3425749eb300cf3717a677b0739c2690444dd26b (patch)
tree70fa745ec66e54c3a02a14698900a682bb3c3221 /bundles/org.eclipse.jst.ws.consumption.ui
parenta6614f0d4d9eed2727258f34e6679c55b7ece877 (diff)
downloadwebtools.webservices-3425749eb300cf3717a677b0739c2690444dd26b.tar.gz
webtools.webservices-3425749eb300cf3717a677b0739c2690444dd26b.tar.xz
webtools.webservices-3425749eb300cf3717a677b0739c2690444dd26b.zip
[110847] Change commands to use IStatus and IProgressMonitor.
Diffstat (limited to 'bundles/org.eclipse.jst.ws.consumption.ui')
-rw-r--r--bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientRunCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientRunCommand.java b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientRunCommand.java
index 54c43003a..65f59f53b 100644
--- a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientRunCommand.java
+++ b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/extension/PreClientRunCommand.java
@@ -32,7 +32,7 @@ public class PreClientRunCommand extends EnvironmentalOperation
StartServerCommand command = new StartServerCommand();
command.setServerInstanceId(webServiceClient_.getWebServiceClientInfo().getServerInstanceId());
command.setEnvironment( environment );
- IStatus status = command.execute( null, null );
+ IStatus status = command.execute( monitor, null );
if (status.getSeverity()==Status.ERROR)
{
environment.getStatusHandler().reportError( status );

Back to the top