1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 09:16:02 +02:00

Bug 456116 - Can only use final fields in Launch Delegates

Change-Id: I695a4ef55ce451ed781e101334e07416b0bc48ed
This commit is contained in:
Marc Khouzam 2016-02-19 06:59:41 -05:00 committed by Gerrit Code Review @ Eclipse.org
parent 9e5888fb37
commit 99465c1604

View file

@ -76,7 +76,12 @@ public abstract class AbstractCLaunchDelegate2 extends LaunchConfigurationDelega
private boolean workspaceBuildBeforeLaunch;
/** Flag set to true if build before launch failed, or was cancelled. */
private boolean buildFailed;
private boolean requireCProject;
/**
* Flag specified at construction time to indicate if a project-less
* launch is supported for this type of launch delegate.
*/
private final boolean requireCProject;
public AbstractCLaunchDelegate2() {
super();