try {
projectName = configuration.getAttribute(PHPLaunchConfigurationAttribute.PROJECT_NAME, "");
} catch(CoreException e) {
- PHPLaunchingPlugin.getDefault().log(e);
+ PHPLaunchingPlugin.log(e);
}
IProject project = PHPLaunchingPlugin.getWorkspace().getRoot().getProject(projectName);
try {
selectedInterpreter = configuration.getAttribute(PHPLaunchConfigurationAttribute.SELECTED_INTERPRETER, "");
} catch(CoreException e) {}
-
+
return PHPRuntime.getDefault().getInterpreter(selectedInterpreter);
}
}