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

[fix] [176481] Updated: Bound to IConnectorService.supportsPassword().

This commit is contained in:
Uwe Stieber 2007-03-06 13:01:38 +00:00
parent 7314d6858c
commit c0cd48ed0c

View file

@ -274,7 +274,7 @@ public class RSESystemTypeAdapter extends RSEAdapter implements IRSESystemTypeCo
IConnectorService[] connectorServices = registry.getConnectorServices(host);
boolean passwordsSupported = false;
for (int i = 0; i < connectorServices.length && passwordsSupported == false; i++) {
passwordsSupported |= !connectorServices[i].isSuppressSignonPrompt();
passwordsSupported |= connectorServices[i].supportsPassword();
}
return passwordsSupported;
}