mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 21:15:23 +02:00
[252912] SystemRemoteFileDialog shows Local contents even when specifying a SystemType
This commit is contained in:
parent
5940bb672f
commit
aa98f62c9d
1 changed files with 6 additions and 1 deletions
|
@ -140,7 +140,12 @@ public abstract class SystemResourceSelectionInputProvider extends SystemAbstrac
|
||||||
_connection = hosts[0];
|
_connection = hosts[0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return getConnectionChildren(_connection);
|
if (_connection != null){
|
||||||
|
return getConnectionChildren(_connection);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return new Object[0];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean hasSystemViewRoots()
|
public boolean hasSystemViewRoots()
|
||||||
|
|
Loading…
Add table
Reference in a new issue