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:
parent
afa5642f17
commit
fc133dc419
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue