1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

Bug 482938 - Add missing getLaunch method to return the TargetedLaunch.

Change-Id: Ifea22b29a24e7afbdd6e60f7e32369b29fe11a5c
This commit is contained in:
Doug Schaefer 2015-11-26 16:10:37 -05:00 committed by Gerrit Code Review @ Eclipse.org
parent 1df3be627f
commit 7b5cdff64f

View file

@ -34,6 +34,12 @@ public abstract class LaunchConfigurationTargetedDelegate extends LaunchConfigur
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
public boolean buildForLaunch(ILaunchConfiguration configuration, String mode, IProgressMonitor monitor)
throws CoreException {