1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-16 13:35:22 +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: * Contributors:
* Martin Oberhuber (Wind River) - [177523] Unify singleton getter methods * 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; package org.eclipse.rse.core.subsystems;
@ -88,7 +89,7 @@ public abstract class AbstractConnectorServiceManager implements IConnectorServi
Hashtable connHT = (Hashtable)systemConnectionRegistry.get(host); Hashtable connHT = (Hashtable)systemConnectionRegistry.get(host);
if (connHT == null) if (connHT == null)
{ {
if (!(host instanceof DummyHost)) if (host instanceof DummyHost)
{ {
connHT = findConnHTForDummyHost(host); connHT = findConnHTForDummyHost(host);
} }