mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 09:35:23 +02:00
Documenting future work.
This commit is contained in:
parent
5845690183
commit
25aa86d80e
1 changed files with 12 additions and 2 deletions
|
@ -32,7 +32,12 @@ import org.eclipse.rse.ui.SystemResources;
|
||||||
/**
|
/**
|
||||||
* A pool of host objects.
|
* A pool of host objects.
|
||||||
* There is one pool per profile.
|
* There is one pool per profile.
|
||||||
*
|
* It is named the same as its owning profile.
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* DWD this may be a candidate for elimination. It is not persisted but derived
|
||||||
|
* when Host objects come into existance. Not sure it provides much value. Code
|
||||||
|
* could be implemented directly in the profile.
|
||||||
*/
|
*/
|
||||||
public class SystemHostPool extends RSEModelObject implements ISystemHostPool
|
public class SystemHostPool extends RSEModelObject implements ISystemHostPool
|
||||||
{
|
{
|
||||||
|
@ -452,7 +457,12 @@ public class SystemHostPool extends RSEModelObject implements ISystemHostPool
|
||||||
*/
|
*/
|
||||||
private void moveConnection(IHost conn, int newPos)
|
private void moveConnection(IHost conn, int newPos)
|
||||||
{
|
{
|
||||||
java.util.List connList = getHostList();
|
/*
|
||||||
|
* DWD revisit, make sure that connections can be "moved", whatever that means.
|
||||||
|
* It appears that connections can be moved up and down in the list which
|
||||||
|
* probably provides for some rational for keeping this around.
|
||||||
|
*/
|
||||||
|
// java.util.List connList = getHostList(); DWD temporarily(?) removed.
|
||||||
//FIXME connList.move(newPos, conn);
|
//FIXME connList.move(newPos, conn);
|
||||||
invalidateCache();
|
invalidateCache();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue