mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-02 22:55:26 +02:00
[173523] applied Javier's pathc
This commit is contained in:
parent
8cad903b9c
commit
0a59ebf2a1
1 changed files with 5 additions and 2 deletions
|
@ -166,8 +166,11 @@ public class SubSystemServiceWizardPage extends AbstractSystemNewConnectionWizar
|
|||
ServiceElement[] cch = child.getChildren();
|
||||
if (cch != null && cch.length > 0)
|
||||
{
|
||||
ServerLauncherPropertiesServiceElement result = (ServerLauncherPropertiesServiceElement)cch[0];
|
||||
results.add(result);
|
||||
if(cch[0] instanceof ServerLauncherPropertiesServiceElement)
|
||||
{
|
||||
ServerLauncherPropertiesServiceElement result = (ServerLauncherPropertiesServiceElement)cch[0];
|
||||
results.add(result);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue