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

(-)model/org/eclipse/rse/ui/internal/model/SystemRegistry.java (-1 / +2 lines)
Lines 34-39 Link Here
34
 * Xuan Chen        (IBM)        - [194838] Move the code for comparing two objects by absolute name to a common location
34
 * Xuan Chen        (IBM)        - [194838] Move the code for comparing two objects by absolute name to a common location
35
 * David McKnight   (IBM)        - [165674] Sort subsystem configurations to be in deterministic order
35
 * David McKnight   (IBM)        - [165674] Sort subsystem configurations to be in deterministic order
36
 * Martin Oberhuber (Wind River) - [165674] Sort subsystem configurations by priority then Id
36
 * Martin Oberhuber (Wind River) - [165674] Sort subsystem configurations by priority then Id
37
 * Martin Oberhuber (Wind River) - [194898] Avoid NPE when doing EVENT_REFRESH_REMOTE on a subsys without filters
37
 ********************************************************************************/
38
 ********************************************************************************/
38
39
39
package org.eclipse.rse.ui.internal.model;
40
package org.eclipse.rse.ui.internal.model;
Lines 2845-2851 Link Here
2845
	{
2846
	{
2846
	    String elementName = getRemoteResourceAbsoluteName(resource);
2847
	    String elementName = getRemoteResourceAbsoluteName(resource);
2847
	   List results = new ArrayList();
2848
	   List results = new ArrayList();
2848
	    if (subsystem != null && elementName != null)
2849
	    if (subsystem != null && elementName != null && subsystem.getSubSystemConfiguration().supportsFilters())
2849
	    {
2850
	    {
2850
		    ISystemFilterReference[] refs = subsystem.getFilterPoolReferenceManager().getSystemFilterReferences(subsystem);
2851
		    ISystemFilterReference[] refs = subsystem.getFilterPoolReferenceManager().getSystemFilterReferences(subsystem);
2851
		    for (int i = 0; i < refs.length; i++)
2852
		    for (int i = 0; i < refs.length; i++)

Return to bug 194898