View | Details | Raw Unified | Return to bug 198802
Collapse All | Expand All

(-)src/org/eclipse/rse/core/subsystems/AbstractConnectorServiceManager.java (-1 / +2 lines)
Lines 12-17 Link Here
12
 * 
12
 * 
13
 * Contributors:
13
 * Contributors:
14
 * Martin Oberhuber (Wind River) - [177523] Unify singleton getter methods
14
 * Martin Oberhuber (Wind River) - [177523] Unify singleton getter methods
15
 * David McKnight   (IBM)        - [198802] Incorrect logic for getting dummy host	
15
 ********************************************************************************/
16
 ********************************************************************************/
16
17
17
package org.eclipse.rse.core.subsystems;
18
package org.eclipse.rse.core.subsystems;
Lines 88-94 Link Here
88
    	Hashtable connHT = (Hashtable)systemConnectionRegistry.get(host);
89
    	Hashtable connHT = (Hashtable)systemConnectionRegistry.get(host);
89
    	if (connHT == null)
90
    	if (connHT == null)
90
    	{
91
    	{
91
    		if (!(host instanceof DummyHost))
92
    		if (host instanceof DummyHost)
92
    		{
93
    		{
93
    			connHT = findConnHTForDummyHost(host);
94
    			connHT = findConnHTForDummyHost(host);
94
    		}
95
    		}

Return to bug 198802