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

[252912] SystemRemoteFileDialog shows Local contents even when specifying a SystemType

This commit is contained in:
David McKnight 2008-11-06 17:44:51 +00:00
parent 2095797a08
commit d8fb964e06

View file

@ -59,7 +59,7 @@ public abstract class SystemResourceSelectionInputProvider extends SystemAbstrac
IRSESystemType hostType = host.getSystemType();
for (int t = 0; t < _systemTypes.length; t++){
IRSESystemType type = _systemTypes[t];
if (hostType == type){
if (hostType.equals(type)){
return true;
}
}