diff --git a/rse/plugins/org.eclipse.rse.services.files.ftp/src/org/eclipse/rse/internal/services/files/ftp/FTPService.java b/rse/plugins/org.eclipse.rse.services.files.ftp/src/org/eclipse/rse/internal/services/files/ftp/FTPService.java index 4d110068e0b..68940d7ec93 100644 --- a/rse/plugins/org.eclipse.rse.services.files.ftp/src/org/eclipse/rse/internal/services/files/ftp/FTPService.java +++ b/rse/plugins/org.eclipse.rse.services.files.ftp/src/org/eclipse/rse/internal/services/files/ftp/FTPService.java @@ -71,7 +71,6 @@ * David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files * Martin Oberhuber (Wind River) - [216351] Improve cancellation of SystemFetchOperation for files * David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible - * David McKnight (IBM) - [216252] MessageFormat.format -> NLS.bind ********************************************************************************/ package org.eclipse.rse.internal.services.files.ftp; @@ -237,7 +236,7 @@ public class FTPService extends AbstractFileService implements IFileService, IFT * * * @see org.eclipse.rse.core.model.IPropertySet - * @param ftpPropertySet + * @param ftpPropertySet FTP Client Preference Properties to set */ public void setPropertySet(IPropertySet ftpPropertySet) { diff --git a/rse/plugins/org.eclipse.rse.services.ssh/src/org/eclipse/rse/internal/services/ssh/files/SftpFileService.java b/rse/plugins/org.eclipse.rse.services.ssh/src/org/eclipse/rse/internal/services/ssh/files/SftpFileService.java index cd1983addc7..aefa4b85800 100644 --- a/rse/plugins/org.eclipse.rse.services.ssh/src/org/eclipse/rse/internal/services/ssh/files/SftpFileService.java +++ b/rse/plugins/org.eclipse.rse.services.ssh/src/org/eclipse/rse/internal/services/ssh/files/SftpFileService.java @@ -23,7 +23,6 @@ * David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files * Martin Oberhuber (Wind River) - [216343] immediate link targets and canonical paths for Sftp * David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible - * David McKnight (IBM) - [216252] MessageFormat.format -> NLS.bind *******************************************************************************/ package org.eclipse.rse.internal.services.ssh.files; @@ -179,7 +178,7 @@ public class SftpFileService extends AbstractFileService implements IFileService * Encode String with requested user encoding, in case it differs from Platform default encoding. * @param s String to encode * @return encoded String - * @throws SystemMessageException + * @throws SystemMessageException with user message in case the requested encoding is not supported */ protected String recode(String s) throws SystemMessageException { if (fControlEncoding==null) { @@ -243,7 +242,7 @@ public class SftpFileService extends AbstractFileService implements IFileService * Decode String (sftp result) with requested user encoding, in case it differs from Platform default encoding. * @param s String to decode * @return decoded String - * @throws SystemMessageException + * @throws SystemMessageException with user message in case the requested encoding is not supported */ protected String decode(String s) throws SystemMessageException { if (fControlEncoding==null) {