1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-16 13:35:22 +02:00

[cleanup] Fix Typo

This commit is contained in:
Martin Oberhuber 2008-04-09 21:52:44 +00:00
parent 9c8e811837
commit 6adb657af5

View file

@ -83,8 +83,8 @@ public abstract class BasicConnectorService extends AbstractConnectorService {
}
/**
* Acquires credentials.
* This implmentation does nothing.
* Acquires credentials. This implementation does nothing.
*
* @see org.eclipse.rse.core.subsystems.IConnectorService#acquireCredentials(boolean)
*/
public void acquireCredentials(boolean refresh) throws OperationCanceledException {
@ -181,13 +181,15 @@ public abstract class BasicConnectorService extends AbstractConnectorService {
/**
* Sets the password for a particular user id and optionally persists it.
* This implemenation does nothing.
* This implementation does nothing.
*
* @param matchingUserId the user id to set the password for
* @param password the password to set.
* @param persist true if this is to be persisted.
* @param propagate true if this password should be propagated to other
* connector services.
* @see org.eclipse.rse.core.subsystems.IConnectorService#setPassword(java.lang.String, java.lang.String, boolean, boolean)
* @see org.eclipse.rse.core.subsystems.IConnectorService#setPassword(java.lang.String,
* java.lang.String, boolean, boolean)
*/
public void setPassword(String matchingUserId, String password, boolean persist, boolean propagate) {
}