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

@ -166,8 +166,11 @@ public class SubSystemServiceWizardPage extends AbstractSystemNewConnectionWizar
ServiceElement[] cch = child.getChildren(); ServiceElement[] cch = child.getChildren();
if (cch != null && cch.length > 0) if (cch != null && cch.length > 0)
{ {
ServerLauncherPropertiesServiceElement result = (ServerLauncherPropertiesServiceElement)cch[0]; if(cch[0] instanceof ServerLauncherPropertiesServiceElement)
results.add(result); {
ServerLauncherPropertiesServiceElement result = (ServerLauncherPropertiesServiceElement)cch[0];
results.add(result);
}
} }
} }
} }