From ddda24b5e7ea6ff53097d1220b05b5866d5339f0 Mon Sep 17 00:00:00 2001 From: David McKnight Date: Wed, 24 Oct 2007 14:57:56 +0000 Subject: [PATCH] [186363] remove deprecated call --- .../rse/files/ui/resources/SystemTempFileListener.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemTempFileListener.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemTempFileListener.java index a1567fb38eb..b827dddb8af 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemTempFileListener.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemTempFileListener.java @@ -612,17 +612,17 @@ public abstract class SystemTempFileListener implements IResourceChangeListener uploadPath = remotePath.toString(); } - // attemp the remote file synchronization + // attempt the remote file synchronization if (doesHandle(fs)) { // see if we're connected try { // check that the remote file system is connected - // if not, attemp to connect to it + // if not, attempt to connect to it if (!fs.isConnected()) { - fs.connect(); + fs.connect(false, null); } } catch (Exception e)