From a50cc50ad88ad213c891d4d754333271bb769a52 Mon Sep 17 00:00:00 2001 From: David McKnight Date: Tue, 25 Apr 2006 17:15:56 +0000 Subject: [PATCH] only use internalConnect() recursive call (not connect()) --- .../rse/connectorservice/dstore/DStoreConnectorService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/DStoreConnectorService.java b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/DStoreConnectorService.java index d0669d40f3d..2613211f558 100644 --- a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/DStoreConnectorService.java +++ b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/DStoreConnectorService.java @@ -905,7 +905,7 @@ public class DStoreConnectorService extends AbstractConnectorService implements // Try to connect again. This is a recursive call, but will only // call if the user presses OK on the password prompt dialog, otherwise // it will continue and return - connect(monitor); + internalConnect(monitor); // Since we got here we must be connected so skip error checking below return; @@ -1017,7 +1017,7 @@ public class DStoreConnectorService extends AbstractConnectorService implements // Try to connect again. This is a recursive call, but will only // call if the user presses OK on the password prompt dialog, otherwise // it will continue and return - connect(monitor); + internalConnect(monitor); // we are connected from recursive so continue return;