1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

Bug 154407 - Added an override for requiresPassword() to DStoreConnectorService to test for Windows system type.

This commit is contained in:
David Dykstal 2006-09-21 22:12:35 +00:00
parent df5a42ae60
commit dfacee65aa

View file

@ -1315,5 +1315,15 @@ public class DStoreConnectorService extends AbstractConnectorService implements
{
return true;
}
/* (non-Javadoc)
* @see org.eclipse.rse.core.subsystems.AbstractConnectorService#requiresPassword()
*/
public boolean requiresPassword() {
IHost host = getHost();
String systemType = host.getSystemType();
boolean requiresPassword = !systemType.equals("Windows");
return requiresPassword;
}
}