1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 379167

I have changed the launchDebugSession method in GdbLaunchDelegate to
protected so that it can be overridden by extending classes.

Change-Id: I160fcb14fe6ac9a31579c2d2db0a756639b92890
Reviewed-on: https://git.eclipse.org/r/5931
Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com>
IP-Clean: Marc Khouzam <marc.khouzam@ericsson.com>
Tested-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Jason 2012-05-10 15:12:45 -06:00 committed by Marc Khouzam
parent de0deb5122
commit 1193dcc379

View file

@ -110,7 +110,7 @@ public class GdbLaunchDelegate extends AbstractCLaunchDelegate2
} }
} }
private void launchDebugSession( final ILaunchConfiguration config, ILaunch l, IProgressMonitor monitor ) throws CoreException { protected void launchDebugSession( final ILaunchConfiguration config, ILaunch l, IProgressMonitor monitor ) throws CoreException {
if ( monitor.isCanceled() ) { if ( monitor.isCanceled() ) {
cleanupLaunch(); cleanupLaunch();
return; return;