1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Corrected comment

This commit is contained in:
John Cortell 2010-05-25 23:55:16 +00:00
parent cc353d738b
commit 646182c984

View file

@ -101,11 +101,14 @@ public abstract class AbstractCLaunchDelegate2 extends LaunchConfigurationDelega
}
/**
* Even though we override the base behavior and only build the single
* project referenced in the launch configuration (and not any of the
* projects it references), we still want to implement this as the base will
* also use the list to determine what files need be saved, and there it's
* not much of a burden to include any referenced projects
* Even though this launcher overrides the base behavior and only builds the
* single project referenced in the launch configuration (and not any of the
* projects it references), we still want to implement this method, as the
* base will also call it to determine what files need be saved. We want to
* respond with all referenced projects since building the single top level
* project will, under the covers, cause its CDT-referenced projects to be
* built as well (a function of CDT build). So, any files in such projects
* should be saved before launch.
*
* @see org.eclipse.debug.core.model.LaunchConfigurationDelegate#getBuildOrder(org.eclipse.debug.core.ILaunchConfiguration,
* java.lang.String)