mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-11 11:05:24 +02:00
Bug 482938 - Add missing getLaunch method to return the TargetedLaunch.
Change-Id: Ifea22b29a24e7afbdd6e60f7e32369b29fe11a5c
This commit is contained in:
parent
1df3be627f
commit
7b5cdff64f
1 changed files with 6 additions and 0 deletions
|
@ -34,6 +34,12 @@ public abstract class LaunchConfigurationTargetedDelegate extends LaunchConfigur
|
||||||
return getLaunch(configuration, mode, target);
|
return getLaunch(configuration, mode, target);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ITargetedLaunch getLaunch(ILaunchConfiguration configuration, String mode, ILaunchTarget target)
|
||||||
|
throws CoreException {
|
||||||
|
return new TargetedLaunch(configuration, mode, target, null);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean buildForLaunch(ILaunchConfiguration configuration, String mode, IProgressMonitor monitor)
|
public boolean buildForLaunch(ILaunchConfiguration configuration, String mode, IProgressMonitor monitor)
|
||||||
throws CoreException {
|
throws CoreException {
|
||||||
|
|
Loading…
Add table
Reference in a new issue