1
0
Fork 0
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:
David Dykstal 2006-06-14 17:53:20 +00:00
parent 5845690183
commit 25aa86d80e

View file

@ -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();
} }