1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45:22 +02:00

[cleanup] Fix Javadoc Warning

This commit is contained in:
Martin Oberhuber 2008-05-19 13:01:04 +00:00
parent 71984b05ab
commit 4120cbbdf6

View file

@ -177,18 +177,20 @@ public class RSEFileStoreImpl extends FileStore
return unconnected; return unconnected;
} }
/** /**
* Return the best available remote file subsystem for a connection. * Return the best available remote file subsystem for a connection.
* Criteria are: * Criteria are:
* <ol> * <ol>
* <li>A connected FileServiceSubsystem</li> * <li>A connected FileServiceSubsystem</li>
* <li>A connected IRemoteFileSubSystem</li> * <li>A connected IRemoteFileSubSystem</li>
* <li>An unconnected FileServiceSubsystem</li> * <li>An unconnected FileServiceSubsystem</li>
* <li>An unconnected IRemoteFileSubSystem</li> * <li>An unconnected IRemoteFileSubSystem</li>
* </ol> * </ol>
* @param host *
* @param host the connection to check
* @return an IRemoteFileSubSystem for the given connection, or * @return an IRemoteFileSubSystem for the given connection, or
* <code>null</code> if no IRemoteFileSubSystem is configured. * <code>null</code> if no IRemoteFileSubSystem is configured.
*/ */
public static IRemoteFileSubSystem getRemoteFileSubSystem(IHost host) { public static IRemoteFileSubSystem getRemoteFileSubSystem(IHost host) {
IRemoteFileSubSystem candidate = null; IRemoteFileSubSystem candidate = null;