}
public void removeExecEnv(int aIndex) throws CpeDescriptorException {
CasProcessorRunInSeperateProcess rip = getRunInSeparateProcess();
if (rip != null) {
CasProcessorExecutable exe = rip.getExecutable();
if (exe != null) {
if (aIndex > exe.getEnvs().size()) {
return;
}
exe.getEnvs().remove(aIndex);
}
}
}