1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[198802] fix for incorrect logic getting dummy host

This commit is contained in:
David McKnight 2007-09-11 16:17:55 +00:00
parent afa5642f17
commit fc133dc419

View file

@ -12,6 +12,7 @@
*
* Contributors:
* Martin Oberhuber (Wind River) - [177523] Unify singleton getter methods
* David McKnight (IBM) - [198802] Incorrect logic for getting dummy host
********************************************************************************/
package org.eclipse.rse.core.subsystems;
@ -88,7 +89,7 @@ public abstract class AbstractConnectorServiceManager implements IConnectorServi
Hashtable connHT = (Hashtable)systemConnectionRegistry.get(host);
if (connHT == null)
{
if (!(host instanceof DummyHost))
if (host instanceof DummyHost)
{
connHT = findConnHTForDummyHost(host);
}