1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-09 18:15:23 +02:00

[173523] applied Javier's pathc

This commit is contained in:
David McKnight 2007-02-12 17:17:26 +00:00
parent 8cad903b9c
commit 0a59ebf2a1

View file

@ -165,6 +165,8 @@ public class SubSystemServiceWizardPage extends AbstractSystemNewConnectionWizar
{
ServiceElement[] cch = child.getChildren();
if (cch != null && cch.length > 0)
{
if(cch[0] instanceof ServerLauncherPropertiesServiceElement)
{
ServerLauncherPropertiesServiceElement result = (ServerLauncherPropertiesServiceElement)cch[0];
results.add(result);
@ -174,6 +176,7 @@ public class SubSystemServiceWizardPage extends AbstractSystemNewConnectionWizar
}
}
}
}
return (ServerLauncherPropertiesServiceElement[])results.toArray(new ServerLauncherPropertiesServiceElement[results.size()]);
}