mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Bug 456116 - Can only use final fields in Launch Delegates
Change-Id: I695a4ef55ce451ed781e101334e07416b0bc48ed
This commit is contained in:
parent
9e5888fb37
commit
99465c1604
1 changed files with 6 additions and 1 deletions
|
@ -76,7 +76,12 @@ public abstract class AbstractCLaunchDelegate2 extends LaunchConfigurationDelega
|
||||||
private boolean workspaceBuildBeforeLaunch;
|
private boolean workspaceBuildBeforeLaunch;
|
||||||
/** Flag set to true if build before launch failed, or was cancelled. */
|
/** Flag set to true if build before launch failed, or was cancelled. */
|
||||||
private boolean buildFailed;
|
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() {
|
public AbstractCLaunchDelegate2() {
|
||||||
super();
|
super();
|
||||||
|
|
Loading…
Add table
Reference in a new issue