mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 14:55:41 +02:00
[fix] [api] Add missing parameter filterDuplicateServiceSubSystemFactories to getSubSystemConfigurationBySystemType(IRSESystemType) method
This commit is contained in:
parent
f38a8dbd0b
commit
61f760dc96
2 changed files with 4 additions and 4 deletions
|
@ -116,7 +116,7 @@ public interface ISystemRegistry extends ISchedulingRule {
|
|||
* Return all subsystem factories which support the given system type. If the type is null,
|
||||
* returns all.
|
||||
*/
|
||||
public ISubSystemConfiguration[] getSubSystemConfigurationsBySystemType(IRSESystemType systemType);
|
||||
public ISubSystemConfiguration[] getSubSystemConfigurationsBySystemType(IRSESystemType systemType, boolean filterDuplicateServiceSubSystemFactories);
|
||||
|
||||
/**
|
||||
* Return all subsystem factories which support the given system type. If the type is null,
|
||||
|
|
|
@ -603,10 +603,10 @@ public class SystemRegistry implements ISystemRegistryUI, ISystemModelChangeEven
|
|||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.rse.core.model.ISystemRegistry#getSubSystemConfigurationsBySystemType(org.eclipse.rse.core.IRSESystemType)
|
||||
* @see org.eclipse.rse.core.model.ISystemRegistry#getSubSystemConfigurationsBySystemType(org.eclipse.rse.core.IRSESystemType, boolean)
|
||||
*/
|
||||
public ISubSystemConfiguration[] getSubSystemConfigurationsBySystemType(IRSESystemType systemType) {
|
||||
return getSubSystemConfigurationsBySystemType(systemType != null ? systemType.getName() : null);
|
||||
public ISubSystemConfiguration[] getSubSystemConfigurationsBySystemType(IRSESystemType systemType, boolean filterDuplicateServiceSubSystemFactories) {
|
||||
return getSubSystemConfigurationsBySystemType(systemType != null ? systemType.getName() : null, filterDuplicateServiceSubSystemFactories);
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
|
Loading…
Add table
Reference in a new issue