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

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

This commit is contained in:
David McKnight 2008-11-06 18:37:52 +00:00
parent 5940bb672f
commit aa98f62c9d

View file

@ -140,7 +140,12 @@ public abstract class SystemResourceSelectionInputProvider extends SystemAbstrac
_connection = hosts[0];
}
}
return getConnectionChildren(_connection);
if (_connection != null){
return getConnectionChildren(_connection);
}
else {
return new Object[0];
}
}
public boolean hasSystemViewRoots()