1
0
Fork 0
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:
David McKnight 2007-02-12 17:17:26 +00:00
parent 8cad903b9c
commit 0a59ebf2a1

View file

@ -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);
}
}
}
}