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